From af25a1b592b39af0f542127e6c33bbeb0ac83b5a Mon Sep 17 00:00:00 2001 From: Verkister Date: Thu, 28 Jan 2021 13:34:18 +0200 Subject: [PATCH 01/19] New advanced Egg Release mechanics. -The vore release eggs are no longer reskinned lockers, but storage items that can have their contents either dumped or pulled out, but the stuff can't be put back into a cracked shell. -A live prey in an egg will have the egg scaled according to their size, and they can get out by resisting. -Also now items can be egged, either one at a time or all at once. The single item eggs are scaled according to the contained item's size class and take the same amount of storage space as the item itself would. -Full stuff eggs are a little more lenient on the size and weight, basically for the reason that one prey's full outfit could fit in one backpack sized egg rather than going full macro based on the total weight. -Also there's a whole bunch of new egg type options and some better looking sprites coming. -Also the new eggs can be picked up and even trash-eaten. -The old locker eggs still exist in the code and can be spawned should anyone have a need for one. --- code/_helpers/global_lists_vr.dm | 65 +++++-- .../objects/items/weapons/storage/egg_vr.dm | 166 ++++++++++++++++++ .../crates_lockers/closets/egg_vr.dm | 8 +- .../client/preference_setup/vore/03_egg.dm | 24 ++- code/modules/vore/eating/belly_obj_vr.dm | 3 + .../vore/eating/bellymodes_datum_vr.dm | 4 +- code/modules/vore/eating/bellymodes_vr.dm | 56 ++++++ code/modules/vore/eating/vorepanel_vr.dm | 16 +- icons/obj/egg_new_vr.dmi | Bin 0 -> 12719 bytes icons/obj/egg_open_vr.dmi | Bin 0 -> 11762 bytes icons/obj/egg_vr.dmi | Bin 6235 -> 6242 bytes vorestation.dme | 1 + 12 files changed, 312 insertions(+), 31 deletions(-) create mode 100644 code/game/objects/items/weapons/storage/egg_vr.dm create mode 100644 icons/obj/egg_new_vr.dmi create mode 100644 icons/obj/egg_open_vr.dmi diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index 862a562b391..2e4068f31f7 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -117,21 +117,57 @@ var/global/list/global_vore_egg_types = list( "Human" = HUMAN_EGG, "Slime" = SLIME_EGG, "Egg" = EGG_EGG, - "Xenochimera" = XENOCHIMERA_EGG, - "Xenomorph" = XENOMORPH_EGG) + "Xenochimera" = XENOCHIMERA_EGG, + "Xenomorph" = XENOMORPH_EGG, + "Chocolate" = CHOCOLATE_EGG, + "Boney" = BONEY_EGG, + "Slime glob" = SLIMEGLOB_EGG, + "Chicken" = CHICKEN_EGG, + "Synthetic" = SYNTHETIC_EGG, + "Cooking error" = BADRECIPE_EGG, + "Escape pod" = ESCAPEPOD_EGG, + "Web cocoon" = COCOON_EGG, + "Bug cocoon" = BUGCOCOON_EGG, + "Rock" = ROCK_EGG, + "Yellow" = YELLOW_EGG, + "Blue" = BLUE_EGG, + "Green" = GREEN_EGG, + "Orange" = ORANGE_EGG, + "Purple" = PURPLE_EGG, + "Red" = RED_EGG, + "Rainbow" = RAINBOW_EGG, + "Spotted pink" = PINKSPOTS_EGG) var/global/list/tf_vore_egg_types = list( - "Unathi" = /obj/structure/closet/secure_closet/egg/unathi, - "Tajara" = /obj/structure/closet/secure_closet/egg/tajaran, - "Akula" = /obj/structure/closet/secure_closet/egg/shark, - "Skrell" = /obj/structure/closet/secure_closet/egg/skrell, - "Sergal" = /obj/structure/closet/secure_closet/egg/sergal, - "Nevrean" = /obj/structure/closet/secure_closet/egg/nevrean, - "Human" = /obj/structure/closet/secure_closet/egg/human, - "Slime" = /obj/structure/closet/secure_closet/egg/slime, - "Egg" = /obj/structure/closet/secure_closet/egg, - "Xenochimera" = /obj/structure/closet/secure_closet/egg/scree, - "Xenomorph" = /obj/structure/closet/secure_closet/egg/xenomorph) + "Unathi" = /obj/item/weapon/storage/vore_egg/unathi, + "Tajara" = /obj/item/weapon/storage/vore_egg/tajaran, + "Akula" = /obj/item/weapon/storage/vore_egg/shark, + "Skrell" = /obj/item/weapon/storage/vore_egg/skrell, + "Sergal" = /obj/item/weapon/storage/vore_egg/sergal, + "Nevrean" = /obj/item/weapon/storage/vore_egg/nevrean, + "Human" = /obj/item/weapon/storage/vore_egg/human, + "Slime" = /obj/item/weapon/storage/vore_egg/slime, + "Egg" = /obj/item/weapon/storage/vore_egg, + "Xenochimera" = /obj/item/weapon/storage/vore_egg/scree, + "Xenomorph" = /obj/item/weapon/storage/vore_egg/xenomorph, + "Chocolate" = /obj/item/weapon/storage/vore_egg/chocolate, + "Boney" = /obj/item/weapon/storage/vore_egg/owlpellet, + "Slime glob" = /obj/item/weapon/storage/vore_egg/slimeglob, + "Chicken" = /obj/item/weapon/storage/vore_egg/chicken, + "Synthetic" = /obj/item/weapon/storage/vore_egg/synthetic, + "Cooking error" = /obj/item/weapon/storage/vore_egg/badrecipe, + "Escape pod" = /obj/item/weapon/storage/vore_egg/escapepod, + "Web cocoon" = /obj/item/weapon/storage/vore_egg/cocoon, + "Bug cocoon" = /obj/item/weapon/storage/vore_egg/bugcocoon, + "Rock" = /obj/item/weapon/storage/vore_egg/rock, + "Yellow" = /obj/item/weapon/storage/vore_egg/yellow, + "Blue" = /obj/item/weapon/storage/vore_egg/blue, + "Green" = /obj/item/weapon/storage/vore_egg/green, + "Orange" = /obj/item/weapon/storage/vore_egg/orange, + "Purple" = /obj/item/weapon/storage/vore_egg/purple, + "Red" = /obj/item/weapon/storage/vore_egg/red, + "Rainbow" = /obj/item/weapon/storage/vore_egg/rainbow, + "Spotted pink" = /obj/item/weapon/storage/vore_egg/pinkspots) var/global/list/edible_trash = list(/obj/item/broken_device, /obj/item/clothing/accessory/collar, //TFF 10/7/19 - add option to nom collars, @@ -182,7 +218,8 @@ var/global/list/edible_trash = list(/obj/item/broken_device, /obj/item/weapon/storage/fancy/cigarettes, /obj/item/weapon/storage/fancy/crayons, /obj/item/weapon/storage/fancy/egg_box, - /obj/item/weapon/storage/wallet) + /obj/item/weapon/storage/wallet, + /obj/item/weapon/storage/vore_egg) var/global/list/contamination_flavors = list( "Generic" = contamination_flavors_generic, diff --git a/code/game/objects/items/weapons/storage/egg_vr.dm b/code/game/objects/items/weapons/storage/egg_vr.dm new file mode 100644 index 00000000000..5b35c776b24 --- /dev/null +++ b/code/game/objects/items/weapons/storage/egg_vr.dm @@ -0,0 +1,166 @@ +//Item type vorepanel egg release containers. + +/obj/item/weapon/storage/vore_egg + name = "egg" + desc = "It's an egg; it's smooth to the touch." //This is the default egg. + icon = 'icons/obj/egg_new_vr.dmi' + icon_state = "egg" + var/open_egg_icon = 'icons/obj/egg_open_vr.dmi' + item_icons = list( + slot_l_hand_str = 'icons/mob/items/lefthand_storage.dmi', + slot_r_hand_str = 'icons/mob/items/righthand_storage.dmi', + ) + w_class = 0 + max_w_class = 0 + show_messages = 0 + allow_quick_empty = TRUE + use_sound = 'sound/items/drop/flesh.ogg' + +/obj/item/weapon/storage/vore_egg/open(mob/user as mob) + icon = open_egg_icon + ..() + +/obj/item/weapon/storage/vore_egg/unathi + name = "unathi egg" + desc = "Some species of Unathi apparently lay soft-shelled eggs!" + icon_state = "egg_unathi" + +/obj/item/weapon/storage/vore_egg/nevrean + name = "nevrean egg" + desc = "Most Nevreans lay hard-shelled eggs!" + icon_state = "egg_nevrean" + +/obj/item/weapon/storage/vore_egg/human + name = "human egg" + desc = "Some humans lay eggs that are--wait, what?" + icon_state = "egg_human" + +/obj/item/weapon/storage/vore_egg/tajaran + name = "tajaran egg" + desc = "Apparently that's what a Tajaran egg looks like. Weird." + icon_state = "egg_tajaran" + +/obj/item/weapon/storage/vore_egg/skrell + name = "skrell egg" + desc = "Its soft and squishy" + icon_state = "egg_skrell" + +/obj/item/weapon/storage/vore_egg/shark + name = "akula egg" + desc = "Its soft and slimy to the touch" + icon_state = "egg_akula" + +/obj/item/weapon/storage/vore_egg/sergal + name = "sergal egg" + desc = "An egg with a slightly fuzzy exterior, and a hard layer beneath." + icon_state = "egg_sergal" + +/obj/item/weapon/storage/vore_egg/slime + name = "slime egg" + desc = "An egg with a soft and squishy interior, coated with slime." + icon_state = "egg_slime" + +/obj/item/weapon/storage/vore_egg/special //Not actually used, but the sprites are in, and it's there in case any admins need to spawn in the egg for any specific reasons. + name = "special egg" + desc = "This egg has a very unique look to it." + icon_state = "egg_unique" + +/obj/item/weapon/storage/vore_egg/scree + name = "Chimera egg" + desc = "...You don't know what type of creature laid this egg." + icon_state = "egg_scree" + +/obj/item/weapon/storage/vore_egg/xenomorph + name = "Xenomorph egg" + desc = "Some type of pitch black egg. It has a slimy exterior coating." + icon_state = "egg_xenomorph" + +/obj/item/weapon/storage/vore_egg/chocolate + name = "chocolate egg" + desc = "Delicious. May contain a choking hazard." + icon_state = "egg_chocolate" + +/obj/item/weapon/storage/vore_egg/owlpellet + name = "boney egg" + desc = "Can an egg shell be made of bones and hair?" + icon_state = "egg_pellet" + +/obj/item/weapon/storage/vore_egg/slimeglob + name = "glob of slime" + desc = "Very squishy." + icon_state = "egg_slimeglob" + +/obj/item/weapon/storage/vore_egg/chicken + name = "chicken egg" + desc = "Looks like chickens come in all sizes and shapes." + icon_state = "egg_chicken" + +/obj/item/weapon/storage/vore_egg/synthetic + name = "synthetic egg" + desc = "Can robots lay eggs?" + icon_state = "egg_synthetic" + +/obj/item/weapon/storage/vore_egg/badrecipe + name = "Burned mess" + desc = "Someone didn't cook this egg quite right..." + icon_state = "egg_badrecipe" + +/obj/item/weapon/storage/vore_egg/escapepod + name = "small escape pod" + desc = "Someone left in a hurry." + icon_state = "egg_escapepod" + +/obj/item/weapon/storage/vore_egg/cocoon + name = "web cocoon" + desc = "It straight up smells like spiders in here." + icon_state = "egg_cocoon" + +/obj/item/weapon/storage/vore_egg/bugcocoon + name = "bug cocoon" + desc = "Metamorphosis!" + icon_state = "egg_bugcocoon" + +/obj/item/weapon/storage/vore_egg/rock + name = "rock egg" + desc = "It looks like a small boulder." + icon_state = "egg_rock" + +/obj/item/weapon/storage/vore_egg/yellow + name = "yellow egg" + desc = "It is a nice yellow egg." + icon_state = "egg_yellow" + +/obj/item/weapon/storage/vore_egg/blue + name = "blue egg" + desc = "It is a nice blue egg." + icon_state = "egg_blue" + +/obj/item/weapon/storage/vore_egg/green + name = "green egg" + desc = "It is a nice green egg." + icon_state = "egg_green" + +/obj/item/weapon/storage/vore_egg/orange + name = "orange egg" + desc = "It is a nice orange egg." + icon_state = "egg_orange" + +/obj/item/weapon/storage/vore_egg/purple + name = "purple egg" + desc = "It is a nice purple egg." + icon_state = "egg_purple" + +/obj/item/weapon/storage/vore_egg/red + name = "red egg" + desc = "It is a nice red egg." + icon_state = "egg_red" + +/obj/item/weapon/storage/vore_egg/rainbow + name = "rainbow egg" + desc = "It looks so colorful." + icon_state = "egg_rainbow" + +/obj/item/weapon/storage/vore_egg/pinkspots + name = "spotted pink egg" + desc = "It is a cute pink egg with white spots." + icon_state = "egg_pinkspots" \ No newline at end of file diff --git a/code/game/objects/structures/crates_lockers/closets/egg_vr.dm b/code/game/objects/structures/crates_lockers/closets/egg_vr.dm index ba0809f6381..cb87bbce013 100644 --- a/code/game/objects/structures/crates_lockers/closets/egg_vr.dm +++ b/code/game/objects/structures/crates_lockers/closets/egg_vr.dm @@ -37,10 +37,10 @@ /obj/structure/closet/secure_closet/egg/nevrean name = "nevarean egg" - desc = "Most Nevareans lay hard-shelled eggs!" - icon_state = "egg_nevarean" - icon_closed = "egg_nevarean" - icon_opened = "egg_nevarean_open" + desc = "Most Nevreans lay hard-shelled eggs!" + icon_state = "egg_nevrean" + icon_closed = "egg_nevrean" + icon_opened = "egg_nevrean_open" /obj/structure/closet/secure_closet/egg/human name = "human egg" diff --git a/code/modules/client/preference_setup/vore/03_egg.dm b/code/modules/client/preference_setup/vore/03_egg.dm index 648b31b3995..284726c4f1d 100644 --- a/code/modules/client/preference_setup/vore/03_egg.dm +++ b/code/modules/client/preference_setup/vore/03_egg.dm @@ -1,14 +1,32 @@ var/UNATHI_EGG = "Unathi" -var/TAJARAN_EGG = "Tajaran" +var/TAJARAN_EGG = "Tajaran" var/AKULA_EGG = "Akula" var/SKRELL_EGG = "Skrell" var/SERGAL_EGG = "Sergal" var/HUMAN_EGG = "Human" var/NEVREAN_EGG = "nevrean" var/SLIME_EGG = "Slime" -var/EGG_EGG = "Egg" -var/XENOCHIMERA_EGG = "Xenochimera" +var/EGG_EGG = "Egg" +var/XENOCHIMERA_EGG = "Xenochimera" var/XENOMORPH_EGG = "Xenomorph" +var/CHOCOLATE_EGG = "Chocolate" +var/BONEY_EGG = "Boney" +var/SLIMEGLOB_EGG = "Slime glob" +var/CHICKEN_EGG = "Chicken" +var/SYNTHETIC_EGG = "Synthetic" +var/BADRECIPE_EGG = "Cooking error" +var/ESCAPEPOD_EGG = "Escape pod" +var/COCOON_EGG = "Web cocoon" +var/BUGCOCOON_EGG = "Bug cocoon" +var/ROCK_EGG = "Rock" +var/YELLOW_EGG = "Yellow" +var/BLUE_EGG = "Blue" +var/GREEN_EGG = "Green" +var/ORANGE_EGG = "Orange" +var/PURPLE_EGG = "Purple" +var/RED_EGG = "Red" +var/RAINBOW_EGG = "Rainbow" +var/PINKSPOTS_EGG = "Spotted pink" // Define a place to save appearance in character setup /datum/preferences diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index a3417dd0ac7..d2175154973 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -38,6 +38,9 @@ var/fancy_vore = FALSE // Using the new sounds? var/is_wet = TRUE // Is this belly's insides made of slimy parts? var/wet_loop = TRUE // Does the belly have a fleshy loop playing? + var/obj/item/weapon/storage/vore_egg/ownegg // Is this belly creating an egg? + var/egg_type = "egg" // Default egg type and path. + var/egg_path = /obj/item/weapon/storage/vore_egg //I don't think we've ever altered these lists. making them static until someone actually overrides them somewhere. //Actual full digest modes diff --git a/code/modules/vore/eating/bellymodes_datum_vr.dm b/code/modules/vore/eating/bellymodes_datum_vr.dm index 30fe4fd33a5..9b9a5bbaa7c 100644 --- a/code/modules/vore/eating/bellymodes_datum_vr.dm +++ b/code/modules/vore/eating/bellymodes_datum_vr.dm @@ -132,8 +132,8 @@ GLOBAL_LIST_INIT(digest_modes, list()) // E G G /datum/digest_mode/egg id = DM_EGG - +/* /datum/digest_mode/egg/process_mob(obj/belly/B, mob/living/carbon/human/H) if(!istype(H) || H.stat == DEAD || H.absorbed) return null - B.put_in_egg(H, 1) + B.put_in_egg(H, 1)*/ \ No newline at end of file diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm index 16cf298e253..427cc1b6590 100644 --- a/code/modules/vore/eating/bellymodes_vr.dm +++ b/code/modules/vore/eating/bellymodes_vr.dm @@ -99,6 +99,62 @@ var/digestion_noise_chance = 0 var/list/touchable_mobs = list() + if(digest_mode == DM_EGG) + var/list/egg_contents = list() + for(var/E in touchable_atoms) + if(istype(E, /obj/item/weapon/storage/vore_egg)) // Don't egg other eggs. + continue + if(isliving(E)) + var/mob/living/L = E + if(L.absorbed) + continue + egg_contents += L + if(isitem(E)) + egg_contents += E + if(egg_contents.len) + if(!ownegg) + if(owner.vore_egg_type in tf_vore_egg_types) + egg_type = owner.vore_egg_type + egg_path = tf_vore_egg_types[egg_type] + ownegg = new egg_path(src) + for(var/atom/movable/C in egg_contents) + if(isitem(C) && egg_contents.len == 1) //Only egging one item + var/obj/item/I = C + ownegg.w_class = I.w_class + ownegg.max_storage_space = ownegg.w_class + I.forceMove(ownegg) + ownegg.icon_scale_x = 0.2 * ownegg.w_class + ownegg.icon_scale_y = 0.2 * ownegg.w_class + ownegg.update_transform() + egg_contents -= I + ownegg = null + break + if(isliving(C)) + var/mob/living/M = C + ownegg.w_class = M.size_multiplier * 4 //Egg size and weight scaled to match occupant. + var/obj/item/weapon/holder/H = new M.holder_type(ownegg) + H.held_mob = M + M.forceMove(H) + ownegg.max_storage_space = H.w_class + ownegg.icon_scale_x = 0.25 * ownegg.w_class + ownegg.icon_scale_y = 0.25 * ownegg.w_class + ownegg.update_transform() + egg_contents -= M + ownegg = null + break + C.forceMove(ownegg) + if(isitem(C)) + var/obj/item/I = C + ownegg.w_class += I.w_class //Let's assume a regular outfit can reach total w_class of 20. + ownegg.calibrate_size() + ownegg.orient2hud() + ownegg.w_class = clamp(ownegg.w_class * 0.2, 1, 8) //A total w_class of 20 will result in a backpack sized egg. + ownegg.icon_scale_x = 0.2 * ownegg.w_class + ownegg.icon_scale_y = 0.2 * ownegg.w_class + ownegg.update_transform() + ownegg = null + return list("to_update" = to_update, "touchable_mobs" = touchable_mobs, "digestion_noise_chance" = digestion_noise_chance) + for(var/A in touchable_atoms) //Handle stray items if(isitem(A) && !did_an_item) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index f6540097269..086c5270f7c 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -236,7 +236,7 @@ // Host is inside someone else, and is trying to interact with something else inside that person. if("pick_from_inside") return pick_from_inside(usr, params) - + // Host is trying to interact with something in host's belly. if("pick_from_outside") return pick_from_outside(usr, params) @@ -267,7 +267,7 @@ host.vore_selected = NB unsaved_changes = TRUE return TRUE - + if("bellypick") host.vore_selected = locate(params["bellypick"]) return TRUE @@ -403,11 +403,11 @@ if(!(target in OB)) return TRUE // Aren't here anymore, need to update menu - + var/intent = "Examine" if(isliving(target)) intent = alert("What do you want to do to them?","Query","Examine","Help Out","Devour") - + else if(istype(target, /obj/item)) intent = alert("What do you want to do to that?","Query","Examine","Use Hand") @@ -505,7 +505,7 @@ host.vore_selected.transfer_contents(target, choice, 1) return TRUE return - + var/atom/movable/target = locate(params["pick"]) if(!(target in host.vore_selected)) return TRUE // Not in our X anymore, update UI @@ -602,7 +602,7 @@ if(!toggle_addon) return FALSE host.vore_selected.mode_flags ^= host.vore_selected.mode_flag_list[toggle_addon] - host.vore_selected.items_preserved.Cut() //Re-evaltuate all items in belly on + host.vore_selected.items_preserved.Cut() //Re-evaltuate all items in belly on . = TRUE if("b_item_mode") var/list/menu_list = host.vore_selected.item_digest_modes.Copy() @@ -632,7 +632,7 @@ host.vore_selected.contamination_color = new_color host.vore_selected.items_preserved.Cut() //To re-contaminate for new color . = TRUE - if("b_desc") + if("b_desc") var/new_desc = html_encode(input(usr,"Belly Description ([BELLIES_DESC_MAX] char limit):","New Description",host.vore_selected.desc) as message|null) if(new_desc) @@ -865,6 +865,6 @@ qdel(host.vore_selected) host.vore_selected = host.vore_organs[1] . = TRUE - + if(.) unsaved_changes = TRUE \ No newline at end of file diff --git a/icons/obj/egg_new_vr.dmi b/icons/obj/egg_new_vr.dmi new file mode 100644 index 0000000000000000000000000000000000000000..b938cc7eb45d5dc00cda9a03835d9acb895481e4 GIT binary patch literal 12719 zcmZvD1ymK$yDuFg4T7S8G?EgMa_Eo_=@9Aejzda!H_{!_(jXvR(%m2pa)=YW;eYR4 z>#g_hUW=L8ab~{##qay=*+Ybik__&%SI>};kZ|Q>CDnj)&(j|k25?kcwZ%k2LT2&S z&~}wHb1`wYa&)zFut!4j%ubo9S3-UN9AoqTjJe8P3QJdTJxKRE-YJVlSGHW={r2Xr z?gQkxfhdY`GJS#wyq=9?%j@Ss92Z=|ZQ-ukS;yjhigMTOMlZ_M~X`e0&l>c&4J_aQc0d?%pLQ9(;35gm> zPEt(6Gy60Ltf8^cb_+u7yReZCAtVs%k)3)#ea%_#-6@{9Vq?&jS#?V#S@L!XSc<8T?%;NfJ46EolaDNuJmYe6a;Ae>S`Ek{gQ19 z&p(8loM;9)GAhc-&MwCDCEJQsQRY>6YO_>x*(sw=6nS%#Orvk7gW(?the2afW-7(B zbB_UelV9OAS8jAjc&dzdsyi|<)kIs9!jR{qIih0ek&vmwp#pYu#Y&DQfx(o6N98)|q* zVyiRVs#V=>=c+2Dz?9U_{~aLPcOD@BlcAv%1=C&4d(o-M{IBI;UaH$E|2l#;OD&JW zSVAAEM@nnaJGW@sV`e%+!2GJnluKtsJtr{s+$tQaoV>}gEnOji!n@zo1UTDboJYfyN?-PxFqqV*#TA=${V(adjni`!p z105Y5!32oIKj=$VFswe#Z-^{6G6Qb=srW6sBR=Saha0XT7|L@=5tVV|{E}=f`7(Tm z2eaQfD7>q&`wpFW4-K(RrjSg07iGk$s^nP6Nc#|FM1aG{nZ&5$MG_$R;TlOuXj}n= z9E0O`(<4o77hbKWvG!R{Z8V|Y~+`1d^ZJ_!K_3|dz2kntf#Jm z?_-Xk`1h#l8S;!^mPN78DN$z`aM#~v=FV~bW3I{DlMJqYB&kCcq@GnYfx3Z1?}*Bt zE_-AADJ80Vnj+Dbl0V_UL_}22G$1LMu~T9&nbXJE9w58B2ep8xmmdq8M9i;{9H-HD z4)wtd+6N{3W>%O;$K}-@C&O9~w|Ov`OEWud-vJ{&Uc1ec@>{W#nR2UVL`AWGAfHzs z-gg2SHKB&gc0@?2GiC29vSx~J@i=^)CV5usMI2S4!aq*ImL*;Q$2Vjoh;_^iCTU0n z?&g`}hAw{SX1gy;^&@v#mr!6(q8mToWtPU?F|eiIC$cj&V|7Pc+3pmtq5>&WXV?nw z>Mb}vlqwe2jWAy<(O<2j$3m;j?p2>p;gBa!=K||meN~@@QQ2w9ZDW+UOl-DguCTz+ zQvG}1@xx%a33&8U@Xq1kX3_g-NujLii+~F zJ^uC~_-fq)lK8H5nl7zmje9xoe=c1LHzui{s_0Z#m|lMW%*m9NSpi+eT-)^UTQ#&E zmc;Mj1vGtw9+|Rnj=6d`qHNi@cIzGWtt zE>CcQ)rjTv^T-nBLMd)0phI&!A9!-ch`zhZ=Q-st{eGzWAT8dWK%qqbPJu^|o4q+5 zx0h{7Zt>s+PpxcSaK*dn>C@tj@-g%d=ztvWx6*;m;CMn=52T!|SF}mx@2e~-|FNdn z?(-+z5%YcyVD;a^qQuy}md+6sk18kFu>SaJj!SnPG(`ZMFfhEIa4p6k)E^f|6>0qv z9RnY=gY`5&ar{qxhQKPvBX%#2jN^1@6nkco+_F@FLlfm5;{Xngu7BI^J5aR8JU{l5T8@cgFX2iXnLfflxF_KD>U+uKtLje2+a}!v zlGIGH`3#jX3Gc)9Zv{AKKC z7X1H!v2FU?Lgfh@ZDL}KxYBrmsMIUA*ei)m80L{nDl=&~K`YR4jbVA4Bl_Rq$pG;R zP^A;KM}*UR9>CfU6J^4a&7{v!xKrAGy=OiQzIvcdAj}652^hyoe%dZcB@oaDa}JIa z`u4ED&c1Mp7M(~`w9;Opadow40_k@0P}dDU;)v8QO*? z;orRX$vO(fKlsaWWthYs<)Gwb#g>ny?EjF?MbynZf)r=yy!2chdv6f|Ka#3gTYx4& zO*gT1|3jkE!j~m<_bnDq!B;06pF(aVwOOwkjv*ich=Y{Iqe|da12ipy4g_VKMv#8< zwYA{HVYE}Axlipx=#hTDMgAp$y$Rp4sQU+iI}p1?>P)5OxxF*$Nb+74>Z9%UpP)+1 zN&;3wbG`nsM~1$q>|*YWzxEoV&ebK|qys~g5iH~u`dz)gxfTW&TAX}u72ZO40Da@QhmzALF&J(Tr8dI{5E7PCW%I@^Tibm;GG_e;X< z$zNEa_Lrtt&aAFC{QQfnZ`|pyULt?Z$@{1aeL0rtMSB{obr)k>>pX4XMtd@J_29q& z8^DiGGkJRr5gHz?mn6X!7Zk0!ZUC#D2w4?o{|$g_>{fnm`Fm4oY@8rg;pM5SAhZ_v z3x8^EXR~kUe0pw&n%HDfiSx`4=@E8PkW^{r57A!qn32YW@;2eGXClaJV{E#!|LTfT zzML6BSgL7{c$)V4KVFu3c_z62{r3{deByWMWq6F4%XTs9Q0-t<+a8BMlFu;`WF9$> zi=Dj^p)fc59WK;?U~0H6Q4e2+omdMD7z!>n+*cW?3F60`jg;M=v=-$qT1Z znO4lOjBG+>%@3h9GBi{gt}c{@4jDZh5^9XZvVL7*lnxSfu_Z)igHfRY@rGStEEEM%BR? z!fnlJ(EFe8tOdk3uAcQ+p3c4;vkjwDE|v*yo-$_uF*o*@WlnqqhNDmK@()I@doS65NNUf<0cwtciB` z??xL>?UA+;fC88W0hyJM&n-MOj0{G~pXsXvh2Q z5RZufYSwKLHhS>hI~4&Rryj^#+xtodDX&ZIfkbz|kUS!py)^3@WO~H@38%1mEZGSR zHLQm|4)moeM_Q9SK3AoUpeq>xE98SULmttdZVetKZp7!z%rodhMqS5C%@EErZuJrl z4_(@REkH)=DP)^sJE&l|nDoOH$~TWF&7{c5Gia$j80t1waP@azLyVg}&JLzCOi3O* z&0ik^vO{~#k>eeF4dllg*qz}2l=l)2_;vyU+p>ZQqDt>0iJ-i0bR#I zQpnm@#LV(pu|pnRQqD!&JkfF3zq81_m;OCDZg*TEWL5OY2va zoijCdwb4s_2}<$vr&-qr+ped1$XFqkv(Q`Ipi_LQMLg;d2LqK&uw>Apkhq^gXL4>X z<%PDgOc)QL(#6EtD=XbI+c9-6B*z;8FAI+tpq2X9~v_j43@FV}pwm5)oqVIZ-307LV_tZ6U zD?Vz58x3njVFz5}@vY>oiQmjBbIpD2b8l3?maQu_DS>VgTpn6veT;5YpV+P1kpctPnI{1LBVFk;(cE6HwuHOo2d8> zT~{!W0JOP-wCNU9QbNqbI|n^kSjL8QHOXauXbMSYE;orSF5Y!?n#%fUS9eZiG1=lc z*$Mii5nyI!HuICQ8I9!eWC=Z+f0|jScOp+jPF+2z1cD34IAVNs!Br=M-LBzZ;)8GY zrQzr8RNL*PMmuoL^M~!n+gG@Z#s_@3sw>K}vhkEYCqfEYA8@h2egK%lVp%FM@{Nl+hE2i^TVr59)UZ zukHOWNAi&F{w_}@6_?#i#t9B+L|HW^b?8UBm3m(9kBi0S@H>eUQ*=L0*2-Iz_%f6# zW9zs(KahM2tEs!KR!mG)rH;Qt7l&DoNcZ9B;m*W~U_S1*85;S6M|cs14kwT|FY2;3 zQ&7q1taQwOE#$?=Q?Ge!JOm7#b^73Sc6N$De>61gi3B7<&-5lK98Thcqyp<`MNT2)njsVV`AgK=cSvNT;<=xn*HNDK~s1CmWE$!|JEO# zXTC1`PHNj7G+|StjOK>3eXIfkvx6sxRw#oWJJrzj^L@C{f<$B(1Nn2i#(# z_E-F_TUrb^`EZqS%R1Pvdl%X05E05i_SQi;B= zbV5-bd=wEY@;yB^O8Y&05GP?+j+GF#44QJcBI;w^Les-JKqSU%87^?-tX~OUqu9K=c!mcmhdhNs*{Q2`o!Ezj2b4zqh zrcgXNJxU_)en>1Wr_d_x<74p$GFzHFz2Sj&_j;4Gb%4lIRQ!lqOFA}Qr1-gIt|cc6vSu2;k~LSvWaO(HNb& zU0bEgQLM~dSl*VP)9}vH4&LB9w&nN$!`9V%9IMhHy@CJ-4bAGfR%VFC0vVFF2UP0k zTJWj|b*u+wFkdJooGI4+mipMfo4kBDpVhD<=;XxK|GN13kJ2@1NaKp><-(XegOE_x zK$KR6yQlX@`09RO3>-Tr<(CiVF@JN+aZ{_s7I z;IxTQ60hT-FoA_E^7`?Sikq430em&1?x;qMh^45`HgK{MK{z0Iowm7g25&@jGX`s_ z4xmCw*heJ9LY5Wm{4?3oz0)gB-S&;MHIZklLpOGqb=Tsrj@jWErMiy^R8nS3Y1!GY z0RkF>!Ul++ot;f>fyq#Wda}{Ik^lPHO|<7m??drtoBOq_+Aj(USmfBkv}wGZ6ek>x z#l*kVU>klA#eV!;LweE;%5^VDLxk_`5?|p@|FFWCCyiR$?^fps>2%zQ>8x&^9 z|K2}L@VBrquhJSNZp?piDBnlKcbh<>2B&xuV56kQ?Q2j`70L4QtFl_EH`o+!P-W!@ z+G`OH-n#F!SsNT1y=KdWUfX55ezPmhKU(7d&~ZX~KS~i)oA$AKoU@E*3oRgS3Oym5 zsxKSIR6!x0w#RdO;U@%BMKI8rYxUxSQ%+7!#H{HBsOL#HdrA}uIX$Kmm_4V0JL)xn zfiwRg3b5(QYBxeHi2_^7X)~o5|90}h0C`$HhedTO=+dnCVe*P4QsfYFx|x9D^;2}| zbKm^J+`=w&d=xS<-8TlOPoVc?vmZY~MWCU?XteQnKHd{ogA_t2N)cGc@(&xNc#^EY zI0%%eUw`rR)D~gLrhc(ahQ(N?DNJzDTD|3__zQoX;tOdM<-pg=uB^o^%OrF|OwNtojrva_?Z`1;s0Y2`^B zZ*T9iS}^0GZ+=~OS^C+@ITj7qFYmt+IyxB|=}9}Z{$k4D?){`5*kv3VO0~5=eah!! zdezw|2Hc+YZbYol86vTRor#4lZGkOSr{lU*aalR?Itq>J)f^0^7*+I8=qKXezw9># z)+b1u5G&4J$&aKjPF{ek1~~3|XDd;b7t~-VdrgtyUov>HWmZVrn#ojAIuZ)DE;!`! z)Jk;5&*O}hH@zNpBaEoCk+4{Zur5)>vP6RP5CSuL5kP1qW)kK^RA4cnybl#S!dfq` zPLoy1LeH9Kdy4JH}1AsHrWn+s7fCY!c6Tva~Q`6IL?-yVN z`*@+Bdk?)5NB1f)4o^;!VKzQavCid%#Kg%onvwcdX{o8YLekf+k#_aUtP%o21nr_c zKKkrwbj|QAp`RCS3?VZ!YL%mV%OxZo1dVF2?N+c3?}uc(t6oeh*+^NH>SzoUV0)&K z?r^aj7}adM#HEw%139tM@AP)N&;9803I_)V_syF(YSPk!5VO%#JG~#Ka)nF>m!6A1 z-HzRx;KB zsfvtDSflsNU+2B9k3J9{6f8_n#655~VcW&Jz|~d#ReL`BmaK2zFaQnTElv6}fV+TK zUivM%)tb}a-`GKT-i3l(_7%Jy8q{E$Zjr$3*05b^%=It--QLQNrg5a@@4oK z%YdM$va)jjND50O^54IIUr|s{WN=&HQO3!<0K2e_0K$*V0h?PZ zUA9XU2` zIKmMHkW$Th*_Vj8bFw%#`rlWfXdYFiI@1`%Oryk4%>&Ryvsx3h`Ng6L=b!^y`J$up z>-TYn-8MyO2ez`nrcQGv@bhV3qFEX6Bf`*@S2lsaH@%SwK??#j&S3<2P4km6-whaP zXh;Hz#tREhAas~{U2mYKCN3w3EuYG|m0^*)b=tB~^CIVK>Fm*LdDD_@^TdSGuKL6|Z}25*x`L+K?0#ItvwC0<(!3YL zep*rNf7j3%SZ37^{->`*M^i28X{0qdG4h!C^RMtw;UGb^XWteG5PK!-(# zI1-SK#39j{{z{IG5&@2M64V(Uh~%n|LJR!m(5S%Z^>h0cpPT58KcK8QCC6xb%kO4R zOQ+MD7YQ#6HEN*m_iwC>j0`#khMAd}pq0~oKwO|QG9;-k9ZeH4O}}SgS~+K3T~)QJ zsin2R54@E;boZI9Dk?3-w0l58eq-Y37!NSmkml8=N$!2R?s0FOHJ z=;f4Ct$g5$%4_t+qV#d|Hf*}(+s!xFS7hD%7aX_3Fn7JJO zo$DDs4<(M)lE%RZLn-}8ro?IZl8qeO+0HNW7++HwrzRHd9{y(S?I>FR(9=${1sNIH zq=@5Yk96s*4tzIBx#r0P<>lqZkfJDAwAD?F=lY)bmeN{cQAVQ;i%q^wG)jJI_G+`RqUJZ-6$L2Ys7)tUTbD zeC)~5I`<-qd0*&CEKJ5mN{^V`AdJYqmr+K(!)wutX4fzy`%tRSYQrkk#Ua>~k7#3{+DV!&RezP{R_IAQW<`9xK}R|}3K z74&bTZJw1@>24GC-@*HtSnw6`o-OL6eNi{Syresa312|RZ{NPh zi7REPx_0?5W8$V+#;$wvtT#Dc$|!w-$|Af}KKQt$ zU6@W`xX(o-Xk&wN*?)?{c;gXq`ve+*m7TB65wLrJs{q&*G_G<>A=^717tRXpBj`z2JP-_;QLV{f=7OH#Bu2kXkw9yIC;f1P z*DiuNW7z_;rL?T(Ns$SRpSx$6XlXyTuHo)TqgD^p79Ff&;mWN2SH<*8Q5c>_f9tfU z%_Ymrqx0UiWlnn@EE!mSI1)h83IQ7A4rJrMK;rGM_*_{8gi4<7BcQ~_mX=Xq{cGPM zOp~0E!3-{&wk-PI%g5MB&{apv&>u?ly>;}tii%1=s|@uC+FueJ873yCcv^9uH(UGr z?w{nNNH)qDi+*QitvI#SMC(bjoib)I|E$(nKNH|1QriV;ZO%)@5pd%1(=ko`#~xW_ z*@QexdkfjZV+VVy(niTk=W@zGm0THgI zp+U#z_Y4Q8yt;aCvEF3y)LmLydROUvz?!`U0BBXZO`nMR$lU+vx2n}~n~#Zl1+&KA z^{zO*7%u@5a+|RJxoMdCH3%VD`IhKyyS|nuEMmUQ0i%i1dzBy}zEHY8tyiL3ei^z(WBpvdb`iw$@IO;)m1(ks?ufCd6DGP*fE3-b`v%CTiJ;x*$Mp z5q&m^DP6?9LyyO=u?&t5?5v08WN3(*2ON_rQn6Ws1H(~188e!Z#wU|*-cs2;JbgIS zbB$Esw+=AfcD-^|ANDCSt%FJN6Q}z9tp|p%;cd$;4_SAjj3H}k;&_twtKA3uF0InGyOfSQ z<$**2Dt-W%20YvWlXJd?D~?lPZJ~`Qz5i9Rk00U~wB)})6_p7h=zHqL>fR@d*3-s%Vs2_uQs`1r zQe$}_qujIjtgNVE(>_x!V<1mwnWF$HZ6Zg=Yb%uO_wV0RbSQV~dU`AoP$Wd0@-qvd ziCRd=hgPN9cb$4>Rh$FS$iF$>sU2mc(y==b05M_n@1^Cy=t2N37uz88dw4$yC?w&v z$J0|iJosiymD6rNYiPu$r^~9U626E+Z(n2I;0E~P6Bp>X=);NTgNxxLPa~mtBv)2c zJpcId;~Xy+4XYrLlRLl?l@MEJ|41U)`m7Z%#z&@#`I_T&qP#$hml&F7G9Mo&cbi!r%kbbnu;nHt(JD8qNBaIt z7>z+33?cOX9{z7-m6Im72y!m(%T4&0CqbN*x8A(U0fHeS#+5hz1?-x1pSbmhET_Fw zhA#5`8J{vDAwnjETRwLEVi-@)`{dos_t^-1j#V0Gkjcqd$7V!RJdvgRb>7nd&ZSfT zVRJD=Kx`H@FpqS;&n9cZ3+BavsZ5B?^)ig;7Sf`ITQa{^^*L zJKjNE@bDjaUOWiwWiav>&yffI0-60xSlu=~sg`J5S$!Y#MBm49l$@R3OH^04X4wKQ zGZOf6zWdzyo(w@kX8~<4TmAUPxAu33w9jihUr;~`x0U7O5^hP`uX{7mnvL(O<>Szd z3mz0NCs*g_NK;D^Y_9+{Eu1E#9W6zWt8aTTl*>J=i`ZSy^7);yGuw$VUov#VE+9`- zJw*{#K$00Pr?zC&IIhg$x5q-Xx3_7Lce~Nul`ZmS%)BTBZTMnk!`kLCca{j8c0%iq z1i?2jdO_Ed%wHr|O5bm|hW&>?llV6`Isa{kW6iexzfEZhT1r-mrC*BvF zU+vN^v>339yhBVb`UZB{kaU|R@a?&6p%t3B{wb_Ty_@d~o*6@bslcX^=KkP&z!}R; z*%*m}d9KZ5HfAI`6J2k`iSpj}C-GzkwOO))ju<-A z=N>UItn&H}j#Pc?-Qe~cZ(0zgn)XnYnx}$RR6OzF3!#!u(=Yna1S*l}AJ%djYue9i zs~+%itIXc|=iN}7xeXGjmB&r2u$k?q`wDh_mz`AlmFTdW(Ov+SA3mG$N@NxqD&3)o z{8eQeeSgp6$NtcgeB#wd?KT#6$I7B8wLXL+&K9?ZE%oAVt`^u}NxNF1yCTY`4xIOS zBNBxFNeqRA(Hn{@xC4BfiXrSi(?HZZMQZ5((CUf0c2J<4U~%gy`+KBsmekz;uGMqd zr*KjkOpVROy`?PewoNwrljiUY^4N&Q4<@~0a4PyCv0m&N6yS#UBcID zw8nNfFt+@?GOZ{tPvPPjeW53lFP}9w)*@&Ok9zQt=3m;Rm&@^v_y zGh!w~>N^gLrN~_D@f9g0h|r+<2Xp)L#J8kGA{6UhX&dNAME^dLugS(I|Dj2Eg(;sX zK}NYZRic!w#HdxHzlDIFFZlf0A>cxReZO()pGvv7p0#=FA26ic_)0&G_BVcQ;9W1v zmm{^i1FN_GNd1lxf%1Vv5PZA8yHh0-0Yk2rl@e~mWyJ=56ZgOhrTAWh{C=ySsqz~l zsk9BoPBQNmN^b3S)`E&GLjMU5_ul?p$oV;%yr!9z!{ZAnH{7ia5+c5V2@gDI@@&P? zP8?WWc9n!eBGkMJ31IyYU%gLirKoc0M2pL)k*}(A2~bMi?3x zC_KH-t?OdF5c2Wh8IXpdEMd?42=&TzZ=arU+}TYWk~to2<0sXD%f94nYtO+DXvZW& z75leC7s1>!X?j>F!28t$a4O1jT+Q^yi)1f4%Jdzm6!EkH{2hCOHKf+X}!xVj#&$ LDM{9de+l|Ok{gCG literal 0 HcmV?d00001 diff --git a/icons/obj/egg_open_vr.dmi b/icons/obj/egg_open_vr.dmi new file mode 100644 index 0000000000000000000000000000000000000000..e3faabb4dc2b068b8c55f56756022cd3a8fb971a GIT binary patch literal 11762 zcmaiaWk8(IljbnEy9W*K5(p4ra7}^*cMI+WXOQ3?LU2#;ph1JX26r2RyE_AO!*6&0 zce}T@_u=igrMkPiy1JffiBx?rkBvcr0RRB76%}OE;r|Z!my3o15A|5g4FLcI5}yw` z?lP8c=B_r*?lw-20DxEKw@ER_ZXPV;wFU9eghN@F7Po9Lt+Z=saI&tV0B31Z=BtL2 zgaYNDxpzq7qN+VhzZ)L^dU-TYRkv5o{8+#~zWQ5zQek5|fqlHybV6T*x8z?OOVQlv zAQbWr@@}w{a#;i7PsZsN024g1DE3h6 z*)YKAt>AX`p>a3Fq1=dA-^ZXEbQvpq8HJ3gQ)hxjtrP1CXs*)3kD)M^7f|v>0vW4k z+f8V}CiNRYC(Fm~hXH_6^@I=hhv%6904+dKM)HGK=24cf7m;Q<43zbz$(;)+T^|h{ ziIBb_kO?ErUCw3Pl=NetS_{uQcBdLiU(TD33X~U~&a2#BEsYEPJp*zLl zP4o7apqtWVa9z95b%2XexAy#>hCpG|O`apo6OOIWF4 z^K#8eGHMlL`*#ti&SYrZehaex`J2)U68piE;!*woqhPwj65&$z@(EAUSmp#5|G$ZP z$|G^1OJH}lvH}H=ZVJ(+@s=~_Ri&MsqW&Y(QxoZ)R;NEV%od?>@|SNn=Kl~jPioyf z5BURnhxIEZ=J%OZrEXe+6tU@7zyMb8TfHuF1lM=Sw29LLq}j#6q#J2ODT>MPgB?Uhr@PjfG)J~XucHf!I$zCq&DT=DQ2{`ltz zHp-*1x;VSU3eyuQ-cLudf*?ky7BVp+2XdO4zUTh^qZ&U!c6@w%ZGun=e`xu7oG#_4 z{c#fOxMg2B{xDiqE&)RP;0g1mS_=E1cswra5d z2z!$G7kzs&&iQghwEvDM*4H2bY#!Z znf;fj0HTTN9)gU@@u9r+$^~Xbwn4dnd69&yO2us3tVV7=v$mb_0jui7*Rs0GE284v z!I?$vH^>-l$Z$cLI5PqD&+R52Fqge&+)%9O;W|yy+TKy0NB*ybgqllqXBwLQV5RH{ zcU3?@{=X8ZaIyUxS^6rCffqq$Lc-cOVT7ygjUXMJ<4$%OSa91i)tiVhlmKS!XCPti!ucDKqc8Zf+u zu=bu$Cru4FfiD}cxDq(;knfd|>NiPuv+A10p+;p}&gCQp&NYA0~m<$M3Jr9^-9{w=%#{JSiwDU7&*lf%?7XBn_n|Eo@T-)j-j(YPi| zja#8YauJqIr%Y4s_%s;(QHB%f?x^jKJdqYgSFhTKP!#N<2(U#veurO7*O(%k8@6Ud z_*@?z(Tk#8dcm$KAliwtXVdl_FOU#Qb21GIDM!2hGnUX+8gOvA?}HdVAN+;)l^epZ zrjxgSpY5XMbEigM>w#6NnVBanKZ5v1tLBuD9=5F%$_}uno%v=*^uoTpMYLSD(uql{ z^Iufu1ZewsIC&w!LvHWq@K0;U^AMEADhfyy{vucg@Cpk{p(WGn7&@s&WDo1LeNX7! z+_X=~_VDp7Z+SJ*7V!-z%HPX_FDi?$?UW%;M&nGa`^ z#`a6E$*X6>j2iafYY$0m{N$%B`dTaHRI%1F!(9uJWwY|Hg*(#5ywb;QoZ)+`*$O0 zLm)Hec^D#XmdFLmmbd7d@AK7Cq;ge04oTftziVwhk43G+?Jmn+jjUXg!%o8BwRUS-MpT2R>g{nbZp!z=dUEw z&@AE1Y$ZODfBopPHgCjw<<~5Kt*wd?rtPiVrGylR*V#CN-BaCldQwb|RE80RbT=af z{bC?ChL3b-Sodt#X$MY9{k6y3LV}EPBoiQ-4;9%~(e`dXFDdqDSH=v(a%e?^gt)pg z-VA(XPfMeW7=9HRuQ71)^9Gd|SjBKAu^HX~59j|0o`u7qD2jKDh>qG_23I7ev>bCY zHkvB>3q&o8irgf~obex&b-4b>^|9=f^FW)Y!cB53adVg2V~)57#2h+Wqe^kI90*LJGh~`FxRJh@mv{l!HCH5%t8Q5=D&Xegmz@Bf$6T8hqN(Q*Jldu{XEkm{ z3#Hgw?sv2lEKX?uGOSnVf{UGWMiuHOpSO-2cN%7U{+V8I(o|Hq75gR{k%bQ8hLep7{?5;(=@Wk8G#cLWDt_ zcXhjuoOEsIIy8=d4(1fB((|OrDdFvbiJt`I`YwIUr>Q@H(2czFJMx(Ewr*hQm9;Yz z#>e8j&oDI@&{_&lUR`~A2AhYiZH#j}#{f9*Ue~vz&sp5ihhIwioGz#fn`an<&=(#1 zSGy8j!t{4n6ttMjj!!A#vTKv1rf__rflOSe4kbg^TDiM>^s~=kCr?J#$akG(#$j8C z?x}x}*!vEUUPK)x-{5Hx;0%=2r3BeF^^M2Iqhl$Mt->|wqf%P;)P zh$oTWAB=L`lzCN9>`_xd)kDVe6NCCcXq1y9gMlxBd-rhhRe=szMIX@aPavFdz`yMC zm;E2Ss=Q+U^6{500d8H-E0zwPM4N(aB5D(g8^C1@?(cX=FHS)PH~#Jc;%+0ym#n); zBon@;u=xG0f)X%McJKW?83jxC0NIv)P~}43ieD~P+zB5v1bcGoCvM7ZF__A`rOW@Y z{z0qwNj5cZ7-u0ZMCk*SIdm$&7gYoZ)&R=ic1+x0Rp!`t;=b+(- z=Qo=PQ6sugRIga~<_!e6*UrTbmm}$(fDL;>N%jj zvOOJTC=-0q9IP&jBu!>}^$6HC2T-Np!)qmSN=h<4;SZ{yd-ecGRSV@1$|U)6M<`6a zh~Z<9Lh1949u<7eLA@DiV{#T8)Hq``!05JI!yva?j~5PdNR!bOAf6kB2oe-d`2hb(Xg; zWscMM0HeusI(3M6dFt>UF8$HJig1C8(H6Pgk8jqqC0-)@YsH%->-RuD zlkPS{qga>sl3}QukuM0VAB14yH*y9Za>gq&T8#n|Tvp!VP>pVk*HHd|wA_|x!+7dL zas)oTGM5`5|2523w(zvsn%E!%IGxdcXxdJH6%|LUKU1mSFq-h~8)KSWOkQbCOze`8 z<(<@BnShEc?Enove%^iN@82SVq8Blnk!X6hzY0>-G|=O)s!QWz1YPzni`2tm*jjVq zE|-kxw5I3M+A%@~Bof!j{fvQ${8o3aDvU2TurkH8Wvvr%N%ep0csmtdLJx$~pAZBq z3>eb7HgiPm_N~jz&E;hH-OX%0_W-{VWYuTpJI{AuKle_GOOv{@^UZsQz$3*hp=(k| z0HVx7IF~S;FTJR5R#XVhmM-GSCOr4A^7H8%9MEg0KPtbJXXLZ(QfcxUd_sLP?IWY0 z^pSC1-&IyuUq=FX_@DdQ%*M9=rk7bu1k^N$avd#tCZtXnxYp3`v%Mf53i zhIpJrd+1?y)-;gr(zSciN@bjsQj(KU72<&^*Iuz|m?0!}R^bJ0HNA#-=JZb$lxdZ3 zrCH6YYir9J8fKNc5fBot5PX(;n)r$q_tupKu#4Y$mj4y)+}K7{05hp|%VjVACbeKp z{4wf_T4zsutf|EZ9%j9@p0oEuL+QnpdmpYr50~r`)RbQLh_B(IVoVJKRK141u>5vz z3y@|myrzeZN0uD^0m&OUv!EB!*&8$|d`(OJJ2BhDdx7!(m*a|vv{9!`^HC^i6>-QL zJkzmKO*=!8%9_c?X^y@D7A~XGP4y#}A_ol((0UQ((-53HB}2Ks57*%H2X-@(pDG9( z?JFGRaJ{`Rye0cHL3fKnnd&ve(8ek*w^2aS_1%x$F_>o685>>lTv!spwJHBYSG%;j z6q5>1lEiwjwC@m`&to2vk8M3EM)VNz`RBLJ!@9J)XJmTsKYz3u9)3R`WinG*=MnmM zNGFe5X#bJY_Q2X+NZGtw_uU~D!wU?Pt=6_`*>HGeiB6EwR5CK>~0UIDtB8Lsv9uW^W#|^`eM-426Es=;d#nd^OzjdP*B-7A$nS~ zKWZD6JyCbkGfWj!bY9AsU=H)_8MytD7tFhP042+)q!HM8`nc)1lbNv*S>Rh=aY*3# zUuweigAf~>q*Ol!08mhlCMMlduIYvEFu!dHJIA=Gao4}Ty*O^uFCn#n zoNZ?)Wt9ubWbs$hA+0-8T)yT8+un}#gE=CzjS`yL<#`7l$a(jxrshY6Q+g<`^$QxJ!#a`VOd%!y zW?*y*mw>(3Hu<2DJ#2*Ejw*X@aIE%FU)m} z8`ENr>uR%s(N1qsseJCn{{~?9UR4TeFB+1Xk;XqB0ykSgz$?UUVhpI zmGdZnYok*ldx>^TX`h?_!K@L!hcCXUoofhx7GwAVxaCQnKy$8tsvLhkQ-24${uC z@e=C*d}bAD3x`=V=^UV!*#h=tZ!(t%w;}^l=bef1zMTj$zWp-S&A#5{sjUe+Q27$| z4w+-;PF5EUu<6p_ITM>63If*C;{gFg_}1^hfg!g(d$84|zD?F&d)8m2tEZ>q=kNQx z0PF~j(obn~1G*3-wY=~Sc%O$e89Acfs_6b4zWxZlt?gS^Hz$z7TD3>X5yD}|gy*g& zafvu&O(LJ@+h5MV_w0*_nlu2=5`NS(%RiUVK?CI0RK#IZ3R=GhSGRwP&J2C?(wwcN zgyw8J$9Ih2n>G@ln4}||rfxoV1_U+vM%iBfIz-zgg#A34M_$DXH41uda==&{f<|ti zCvYc8(oxK7law;()PaHj(|h02$lDZor)+cF>n!oXH_JDl0a|kha}Hrw2Z-F`N&$fI z{ce60steSWH0Vh(1}D6V5j431*dyP=%1{hcT~`H3gJ(YohG|Cl5M;e zu|xzSX@P({w~qRHHj~(CV|ty7V6}8VO|(MmyQR;i`+~DAftzt?6{&a%Sk}0eIr5sl zB}V;aZ0}vX9!1OQA)Om7GBfdjW zufQ=s*Q9H038pZ>r>14M6F!)Au-F{%%C+LLN9RREQdLtsZzTw#_14f(@kuK#W}&C2 zXJKVEJ)Ey5=t$$YYFR|2l%7@a_Ld}z&3c>7F^7y2_ff$)SeE_7J6M35tRQz(R3sxd z5Q-=lkH$df5g|)CC)#QG$hVv+?DnHTS)1Q=Qvo0g_}&+9wTi8%<>2Y(lXpwV+_2#_1fRxFD@xL(^DYAzfK~e5F|E+ z@Cddxq6UVi{6Vq6udN>>#8Ej}PLnZ{x*?{dzd^@5v%Jm>U${79y7p^{TyUe-8ff3y zcvtJGP-`TFQmm}zw%`*e?6$3dNy725C*n)1Xa`(HZyVxRpjZT1w`=h-$xgAFXbev5 z#Xo=2zVR(vGLlHRdwSS%GO`*?`h}h;=9`?FN>*B0T3lM1UtS&yPn=))?sR*fwB9rx z)h{hGSz1{9u;5D*0vkM4^-L0?Aw+C+QBKd!+A;wHa=xigkFz2n_v+2)`v9wP$5)Mp z*NtUtw~@7;QrcfJvPR8M%$7)Shy~4~7CTro^LbRWaXah!2I9YzyDrtQv7nxM^QJ_= z9WRDk-2HEK&@@gYqq0vQg1@0OCwzXHR=^KOAz@*BV5rw`+IhCouc(yRE$Oms!KbFLe-OtSetK5Tl*9O! z^9CWAvo(2JnfX;64Ux5&vALqxuz#Q(f3nNE{-?nSD4@Rmv0nfC%~G?kfXWygE*>4K zEe1uwE2f*~(l3t;vuY_eZ8!ox(}*jGPTE)uCVCH*5dxp34>u%<>~QI}*ViY*8Q3^E zQL(fvNX%Eg>@&$Zz1SIRU~7LkZnk~5Bx`3^CUu;iPQkcIfY;hSKWEFLs{a^~^mVCk z=-c_vv5D_nhpQUvRsQ#fUO?bm_fK_rof?TnMr&VS#orcf-FRdxk#eDjYD!TaZ|rGu zQsY=f0+VOCp7q#u8yWgMf?DshUqnbD=N~LmT-OHma>R#mUtE|zEGYmoNI}CHkdX5O zazg{sLnzcgWz92u^MWd}1E1kDx40oy?UZb8X9^bsk9!c3x;E+UZ&!hb`Fe*83&9L@ zY-~nW*2s!CYNp4YYMOHR#y@JOKa08f>cfu=rXj`^eRHs!dnfVEWI9SUxjo1SR<_svsV zpaGi_^nlMnOz`U*+rpNzG^ZcRfDe?l%Cb0kcz6jmF3ebtOV!ayO0VmP zcZ{Ov6i6K%m2-8)MHKr5GRqKuW5ilC7FYEBd-fQJdwn(s=VBf_ol1lMB28|i_dO2H z2!hYYfF40{UPIP?=0c5t>d*P#bND%qwTk9$5N@Rv2~vLh4D8!K^b;I-9Y(^w@C&rx z#kM@I(9x`xB=)MF3UJJ?XjHU~uNssdwU)+X+Prmd zHm0<(aWni~_)LckOB?)Kr~Yf{n=4jtx?!5+uUB?%Mug8cB+2m}Hn zqN3K%`e|;g1r^>p#ZkRU?(36-1HsQOo&@Ce1NP>QM1p?PsIt^oteL3CITHJIk{rL^ zM9j|eZRx=Enn~q2%_U8!I@*^s!)pzEG>e59pWPEuf{RC#t(0JcZ~09uI;V%Zke}^i zjr#FsMDlhdzx9`EmrLW8RR!ZX6|Wf*e54BvFlo7lhDpc3z6!11f&O6e9|eCt z{f^3~;4o+$uX0!t9PBTW-%X~ATd?1b=58~Adfk;zCnVrWNlSm@lyG$9QdCs@Y1o_$ zxAO5tQj#Q{aM)w00wFI>Ps=DOqQgtIRHDUX!C+R6qCQ?5bs>O*!?)T`J7`p|aVRK< zkFux6$0aS?E2X)yz1YU5zl(a%gYP5=WH5zaJV8OB1*`} zP?nSonmpi!%OV#U?v&EF*VPY+<&i;wTIN8`1kpQ7Y3a`w_9OMy*1NRc=fl*Ho8k6% zf&(%h*i=W@Ezl*4tEpUJc~`8o5^;5PcLI&n{0I~L=tduoO!9{SBGr!T4>Yb)<-W(9 zpe4(JpJPe$OVZb@K^j7h_7uqF$bq3~*Ii%SXsrqWhWZ1 z)h{{nN1&PgPS{WhmK*gP%o&9$M zBmm)(*`;7v z<>88k&m>GKW2i}K6(@KFr__a0mN66Zv^+eGX-`~UO@Ij{d-||g8OVcwUj)=ANottF zB5BPXT6(4>BCb-{-#18u%k=4;g^_%U?3>{3v{|=085LhsiuNhWkddCFEI6%^`RzsvJmxJ$K1JdgSVVUqkit7>&pVUYwibm?cxpKwYE zyk07j8<6cQX@ck4dJS7Ab!D%vu7C;W2!k4bbGQ`eNn9~%qObA8zNuT7#Aq%%u>-5IFR`~q zQnJ#05Mb>UNx<-ao!&?I34=Z)SGDcu@$@uiOT(mbR2+J3)PsX8ZN0RVf5{@w_kxEw92+=|^JD?;ON}+mg1%k_8uzm0pb8<>Vb`KoaM~Whoqu%gB##(X!@dm#c z&>?64f|rZsL+BxMv7GAIoFh6G={+N=bzQqG)RmGI)>_&cXp6h%^p(a4Z`Fgwq_f6u z#z;%R4`_cr1v{Z`egF(_+d4r&1NSP7Xim+zryF)DHjWVHf$b*{#N3m{M7Q+%hQ@^7 zwCyPi15OPS9K-x7i7-2702cz_1G6COU)4|fnSNfM7BOa0KCuNJF3SIqUdl*Xg>6op z8-+CV)LweUATZG*n!h>&)^UUA9k?CUePG`Uwp!7gA}`A}&?9*8g+%2DxlgxW)=f?n z9x0s|tAlGv|8nv&if5r|048{Y(!GKf1H5GxSI2)`KFJRc`{J(>>=CY`lR47!Fu|*; z!fxK$m`8@dr4-k*<+5u*7!USA3p^h3s}7sXO2&HvuF?nlF}svvP2`Cr*-K) zo!RI88h+Dz5YBc=PSDloaN<^5o4I1_xl;sVwtL9uKp6<#vGw*S+PS{bZW&F$qj@@i zl2aOrS68LqDf;(@Ty-7jPDsTMsvqZu*-z22O*i6hg!PO@kH4pmZ zWpkcFpK`?L@n2v?L&SQj%?b2XND-VbHe4&Y2e^meiL-rn0&Y(Q=oNRiyyOA9pkyO% ze6r}^oN>S(_#!HPZ*O)Ldmc*96obO! zSvhSPhh`bzPc7>2+eNbD3Vp=K;Qn=)SVIoc)l0MBDQm|=3z(@esP(zINEPiNjrFOf z4-iSCiJiBU+oGUWeyFuIkqup^yOBKubLGQR^B`9}d{V!;-iLUJQ0(8eG)CyZ%Z3E# zr3cMNI#(l$&!cCFS6PsIUc2rtTvr?+(Ee7*Pbs?+x8A5*6h{ahx zdc>{%K=_!`Ouo>7cYC-d`_lk~kZh5S$v+}pKfe5ZOF=$b9p%FmiCz zvvSRp1>cWz_5DdW%3+)7d)hr!jKRt2X}UL$!Ab84toD1wWkgw z$JaF+~9z8-2HYsGSt11=D(Mk z5p$R{NnvD<3LnzQb#htSleWWfj^AB#=;RujO;4FRgwz;74|iI!59l()p{nhEc|+aDOwg< zpdr8x4Bk}w(KOmjI^$(lOx^ zCH=YqZkNALhSp^$pNdAu+i?4~hGg99#b8A~Z?wO-I~T)-vA+` zRSehTxjJEs9GO^)q2kGSMjeUslHKO$6st>ZT6yt||4>xT(}wk;T-las?wX_jMdpa4 zdL@{gTkUad{C&KiK={{ta$C&N)2%eQ(9H%ScV5;Zgu9FbfxSm$B5o79;PG))OJO#4 zzX_~&hNV6M&S#&jd8t#kXhG0b#HRGG5CSvNgmg#9Q_#x4r+Aj^L7>O%WyF6kv=v+u z1Jl0Nc01RncRTTlr2ET}P4e;PcJ^iLxPi*(PYt8$${17Ax*Hi$jJXh(Z)ZzTbBmP~|_HIbA}p*Q`|!W3wUDFR-IpCoYzxw^z?5^VfNaVEiL6 zl+_FtCm3h(mz)#ajlbco5AOouhee)aCm45~e{ju=xNCE0R+lzOS^P#N!9Ltyjn_g^ zk9LY~1n-bBQbZa9;5jB!g;>qkt#Btfrs*a8PW2l!cL!yLcOWl-sM1_j`oDYey8%NC Y?nuM25ch^Z1JfIHBpi*BTJUb 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 i9B!jQl%~>@&`Uy* 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 T%HdTA^SFBX`laFvj* Date: Thu, 28 Jan 2021 13:43:45 +0200 Subject: [PATCH 02/19] small edit and a typo fixy --- .../crates_lockers/closets/egg_vr.dm | 2 +- icons/obj/egg_new_vr.dmi | Bin 12719 -> 12593 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/crates_lockers/closets/egg_vr.dm b/code/game/objects/structures/crates_lockers/closets/egg_vr.dm index cb87bbce013..dabc8fd88bb 100644 --- a/code/game/objects/structures/crates_lockers/closets/egg_vr.dm +++ b/code/game/objects/structures/crates_lockers/closets/egg_vr.dm @@ -36,7 +36,7 @@ icon_opened = "egg_unathi_open" /obj/structure/closet/secure_closet/egg/nevrean - name = "nevarean egg" + name = "nevrean egg" desc = "Most Nevreans lay hard-shelled eggs!" icon_state = "egg_nevrean" icon_closed = "egg_nevrean" diff --git a/icons/obj/egg_new_vr.dmi b/icons/obj/egg_new_vr.dmi index b938cc7eb45d5dc00cda9a03835d9acb895481e4..a8b000fc91b52348d9c8a6415811f45de58fd47b 100644 GIT binary patch delta 12341 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 NSxH5SO0lp0{{g767$X1x From f69a2ed6de8a95e27e19b48d3a717a45b15ee43c Mon Sep 17 00:00:00 2001 From: Verkister Date: Thu, 28 Jan 2021 13:54:57 +0200 Subject: [PATCH 03/19] e --- icons/obj/egg_new_vr.dmi | Bin 12593 -> 12590 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/egg_new_vr.dmi b/icons/obj/egg_new_vr.dmi index a8b000fc91b52348d9c8a6415811f45de58fd47b..b9804d69baf338b851874753db8b26af4562a54d 100644 GIT binary patch delta 319 zcmV-F0l@yTVyfFDZ*Bkpc$}5e!A`?43;-i~J8Z9j+|(qYZXBF+V{gx47mz?Q$|aFL{jn{t;d%dZI6;3rv}e*1B|!&I_YZAz ziDM1W!FJO&fuaxf_9zuAK?f`He$_T()B+tmw#}R3Ot<@Y^MAS|tRb3cqO%evlMTyk zloj7mjkZim%qEJ{!e|R6^=Jz%9A`3)HGV8MTAY$ieo~TIG>6~yu5CtQyg~=t-QDJP zekKe!D!G_#|G6Me7^_WZVy0@MDsD1X5Zy$^<={AzXBlkznrfgLok>%1m?_I>t6H3h zt>|I#|Ik-rmNSbjn2qb_m5c)x#pI2fFDZ*Bkpc$}5eu}%Xq34z{rfmjdyg~=-&E4vD zz9;lJD7lzz|G6Me7^_WZVy0@MDsD7Z5Zy?|<={AxXX$PFnrfgL-Jja~6BUPW$6kn8uQ&mf!RecE>Gj U5Bv5L_7;?K8&_C3vsD4vFMe;G!vFvP From 1f4bf2bf3eb35c208612bd101a0e3394eab692c1 Mon Sep 17 00:00:00 2001 From: Verkister Date: Thu, 28 Jan 2021 18:50:16 +0200 Subject: [PATCH 04/19] Fixes item-contained prey not un-muffling --- code/modules/vore/eating/belly_obj_vr.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index d2175154973..8032e7707bc 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -289,6 +289,10 @@ //Place them into our drop_location M.forceMove(drop_location()) + for(var/mob/living/L in M.contents) + L.muffled = 0 + for(var/obj/item/weapon/holder/H in M.contents) + H.held_mob.muffled = 0 items_preserved -= M From 396028e9a18761fe4371c21839b61ba5fc0fe3d9 Mon Sep 17 00:00:00 2001 From: Verkister Date: Fri, 29 Jan 2021 00:22:41 +0200 Subject: [PATCH 05/19] percussive maintenance? --- code/modules/vore/eating/belly_obj_vr.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index 8032e7707bc..e5d11bc42b1 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -287,13 +287,14 @@ if (!(M in contents)) return 0 // They weren't in this belly anyway - //Place them into our drop_location - M.forceMove(drop_location()) for(var/mob/living/L in M.contents) L.muffled = 0 for(var/obj/item/weapon/holder/H in M.contents) H.held_mob.muffled = 0 + //Place them into our drop_location + M.forceMove(drop_location()) + items_preserved -= M //Special treatment for absorbed prey From 7b1c399a73a8bbe040c797792c2354018eebccf7 Mon Sep 17 00:00:00 2001 From: Verkister Date: Fri, 29 Jan 2021 14:55:17 +0200 Subject: [PATCH 06/19] Eggy reworks and fixes --- code/_helpers/global_lists_vr.dm | 31 --------- .../objects/items/weapons/storage/egg_vr.dm | 39 ++++++++++- .../client/preference_setup/vore/03_egg.dm | 35 +--------- .../vore/eating/bellymodes_datum_vr.dm | 62 ++++++++++++++++- code/modules/vore/eating/bellymodes_vr.dm | 69 +++---------------- 5 files changed, 109 insertions(+), 127 deletions(-) diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index 2e4068f31f7..6af71afacfb 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -107,37 +107,6 @@ var/global/list/fancy_release_sounds = list( "None" = null ) -var/global/list/global_vore_egg_types = list( - "Unathi" = UNATHI_EGG, - "Tajaran" = TAJARAN_EGG, - "Akula" = AKULA_EGG, - "Skrell" = SKRELL_EGG, - "Nevrean" = NEVREAN_EGG, - "Sergal" = SERGAL_EGG, - "Human" = HUMAN_EGG, - "Slime" = SLIME_EGG, - "Egg" = EGG_EGG, - "Xenochimera" = XENOCHIMERA_EGG, - "Xenomorph" = XENOMORPH_EGG, - "Chocolate" = CHOCOLATE_EGG, - "Boney" = BONEY_EGG, - "Slime glob" = SLIMEGLOB_EGG, - "Chicken" = CHICKEN_EGG, - "Synthetic" = SYNTHETIC_EGG, - "Cooking error" = BADRECIPE_EGG, - "Escape pod" = ESCAPEPOD_EGG, - "Web cocoon" = COCOON_EGG, - "Bug cocoon" = BUGCOCOON_EGG, - "Rock" = ROCK_EGG, - "Yellow" = YELLOW_EGG, - "Blue" = BLUE_EGG, - "Green" = GREEN_EGG, - "Orange" = ORANGE_EGG, - "Purple" = PURPLE_EGG, - "Red" = RED_EGG, - "Rainbow" = RAINBOW_EGG, - "Spotted pink" = PINKSPOTS_EGG) - var/global/list/tf_vore_egg_types = list( "Unathi" = /obj/item/weapon/storage/vore_egg/unathi, "Tajara" = /obj/item/weapon/storage/vore_egg/tajaran, diff --git a/code/game/objects/items/weapons/storage/egg_vr.dm b/code/game/objects/items/weapons/storage/egg_vr.dm index 5b35c776b24..6eef606929a 100644 --- a/code/game/objects/items/weapons/storage/egg_vr.dm +++ b/code/game/objects/items/weapons/storage/egg_vr.dm @@ -20,6 +20,22 @@ icon = open_egg_icon ..() +/obj/item/weapon/storage/vore_egg/proc/hatch(mob/living/user as mob) + visible_message("\The [src] begins to shake as something pushes out from within!") + animate_shake() + if(do_after(user, 50)) + if(use_sound) + playsound(src, src.use_sound, 50, 0, -5) + animate_shake() + drop_contents() + icon = open_egg_icon + +/obj/item/weapon/storage/vore_egg/proc/animate_shake() + var/init_px = pixel_x + var/shake_dir = pick(-1, 1) + animate(src, transform=turn(matrix(), 8*shake_dir), pixel_x=init_px + 2*shake_dir, time=1) + animate(transform=null, pixel_x=init_px, time=6, easing=ELASTIC_EASING) + /obj/item/weapon/storage/vore_egg/unathi name = "unathi egg" desc = "Some species of Unathi apparently lay soft-shelled eggs!" @@ -163,4 +179,25 @@ /obj/item/weapon/storage/vore_egg/pinkspots name = "spotted pink egg" desc = "It is a cute pink egg with white spots." - icon_state = "egg_pinkspots" \ No newline at end of file + icon_state = "egg_pinkspots" + +/obj/item/weapon/holder/attack_hand(mob/living/user as mob) + if(istype(src.loc, /obj/item/weapon/storage/vore_egg)) //Don't scoop up the egged mob + src.pickup(user) + user.drop_from_inventory(src) + return + ..() + +/obj/item/weapon/holder/container_resist(mob/living/held) + if(istype(src.loc, /obj/item/weapon/storage/vore_egg)) + var/obj/item/weapon/storage/vore_egg/E = src.loc + if(isbelly(E.loc)) + var/confirm = alert(held, + "Are you sure you wish to hatch inside your captor?", + "Confirmation", + "Proceed", "Cancel") + if(!confirm == "Proceed") + return + E.hatch(held) + return + ..() \ No newline at end of file diff --git a/code/modules/client/preference_setup/vore/03_egg.dm b/code/modules/client/preference_setup/vore/03_egg.dm index 284726c4f1d..b01cc1c26e6 100644 --- a/code/modules/client/preference_setup/vore/03_egg.dm +++ b/code/modules/client/preference_setup/vore/03_egg.dm @@ -1,33 +1,3 @@ -var/UNATHI_EGG = "Unathi" -var/TAJARAN_EGG = "Tajaran" -var/AKULA_EGG = "Akula" -var/SKRELL_EGG = "Skrell" -var/SERGAL_EGG = "Sergal" -var/HUMAN_EGG = "Human" -var/NEVREAN_EGG = "nevrean" -var/SLIME_EGG = "Slime" -var/EGG_EGG = "Egg" -var/XENOCHIMERA_EGG = "Xenochimera" -var/XENOMORPH_EGG = "Xenomorph" -var/CHOCOLATE_EGG = "Chocolate" -var/BONEY_EGG = "Boney" -var/SLIMEGLOB_EGG = "Slime glob" -var/CHICKEN_EGG = "Chicken" -var/SYNTHETIC_EGG = "Synthetic" -var/BADRECIPE_EGG = "Cooking error" -var/ESCAPEPOD_EGG = "Escape pod" -var/COCOON_EGG = "Web cocoon" -var/BUGCOCOON_EGG = "Bug cocoon" -var/ROCK_EGG = "Rock" -var/YELLOW_EGG = "Yellow" -var/BLUE_EGG = "Blue" -var/GREEN_EGG = "Green" -var/ORANGE_EGG = "Orange" -var/PURPLE_EGG = "Purple" -var/RED_EGG = "Red" -var/RAINBOW_EGG = "Rainbow" -var/PINKSPOTS_EGG = "Spotted pink" - // Define a place to save appearance in character setup /datum/preferences var/vore_egg_type = "Egg" //The egg type they have. @@ -44,8 +14,7 @@ var/PINKSPOTS_EGG = "Spotted pink" S["vore_egg_type"] << pref.vore_egg_type /datum/category_item/player_setup_item/vore/egg/sanitize_character() - var/valid_vore_egg_types = global_vore_egg_types - pref.vore_egg_type = sanitize_inlist(pref.vore_egg_type, valid_vore_egg_types, initial(pref.vore_egg_type)) + pref.vore_egg_type = sanitize_inlist(pref.vore_egg_type, tf_vore_egg_types, initial(pref.vore_egg_type)) /datum/category_item/player_setup_item/vore/egg/copy_to_mob(var/mob/living/carbon/human/character) character.vore_egg_type = pref.vore_egg_type @@ -59,7 +28,7 @@ var/PINKSPOTS_EGG = "Spotted pink" return TOPIC_NOACTION else if(href_list["vore_egg_type"]) - var/list/vore_egg_types = global_vore_egg_types + var/list/vore_egg_types = tf_vore_egg_types var/selection = input(user, "Choose your character's egg type:", "Character Preference", pref.vore_egg_type) as null|anything in vore_egg_types if(selection) pref.vore_egg_type = vore_egg_types[selection] diff --git a/code/modules/vore/eating/bellymodes_datum_vr.dm b/code/modules/vore/eating/bellymodes_datum_vr.dm index 9b9a5bbaa7c..48abf3db5d7 100644 --- a/code/modules/vore/eating/bellymodes_datum_vr.dm +++ b/code/modules/vore/eating/bellymodes_datum_vr.dm @@ -14,6 +14,9 @@ GLOBAL_LIST_INIT(digest_modes, list()) /datum/digest_mode/proc/process_mob(obj/belly/B, mob/living/L) return null +/datum/digest_mode/proc/handle_atoms(obj/belly/B, list/touchable_atoms) + return FALSE + /datum/digest_mode/digest id = DM_DIGEST noise_chance = 50 @@ -136,4 +139,61 @@ GLOBAL_LIST_INIT(digest_modes, list()) /datum/digest_mode/egg/process_mob(obj/belly/B, mob/living/carbon/human/H) if(!istype(H) || H.stat == DEAD || H.absorbed) return null - B.put_in_egg(H, 1)*/ \ No newline at end of file + B.put_in_egg(H, 1)*/ + +/datum/digest_mode/egg/handle_atoms(obj/belly/B, list/touchable_atoms) + var/list/egg_contents = list() + for(var/E in touchable_atoms) + if(istype(E, /obj/item/weapon/storage/vore_egg)) // Don't egg other eggs. + continue + if(isliving(E)) + var/mob/living/L = E + if(L.absorbed) + continue + egg_contents += L + if(isitem(E)) + egg_contents += E + if(egg_contents.len) + if(!B.ownegg) + if(B.owner.vore_egg_type in tf_vore_egg_types) + B.egg_type = B.owner.vore_egg_type + B.egg_path = tf_vore_egg_types[B.egg_type] + B.ownegg = new B.egg_path(B) + for(var/atom/movable/C in egg_contents) + if(isitem(C) && egg_contents.len == 1) //Only egging one item + var/obj/item/I = C + B.ownegg.w_class = I.w_class + B.ownegg.max_storage_space = B.ownegg.w_class + I.forceMove(B.ownegg) + B.ownegg.icon_scale_x = 0.2 * B.ownegg.w_class + B.ownegg.icon_scale_y = 0.2 * B.ownegg.w_class + B.ownegg.update_transform() + egg_contents -= I + B.ownegg = null + break + if(isliving(C)) + var/mob/living/M = C + B.ownegg.w_class = M.size_multiplier * 4 //Egg size and weight scaled to match occupant. + var/obj/item/weapon/holder/H = new M.holder_type(B.ownegg) + H.held_mob = M + M.forceMove(H) + H.sync(M) + B.ownegg.max_storage_space = H.w_class + B.ownegg.icon_scale_x = 0.25 * B.ownegg.w_class + B.ownegg.icon_scale_y = 0.25 * B.ownegg.w_class + B.ownegg.update_transform() + egg_contents -= M + B.ownegg = null + break + C.forceMove(B.ownegg) + if(isitem(C)) + var/obj/item/I = C + B.ownegg.w_class += I.w_class //Let's assume a regular outfit can reach total w_class of 16. + B.ownegg.calibrate_size() + B.ownegg.orient2hud() + B.ownegg.w_class = clamp(B.ownegg.w_class * 0.25, 1, 8) //A total w_class of 16 will result in a backpack sized egg. + B.ownegg.icon_scale_x = 0.25 * B.ownegg.w_class + B.ownegg.icon_scale_y = 0.25 * B.ownegg.w_class + B.ownegg.update_transform() + B.ownegg = null + return \ No newline at end of file diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm index 427cc1b6590..23ef02e9ac9 100644 --- a/code/modules/vore/eating/bellymodes_vr.dm +++ b/code/modules/vore/eating/bellymodes_vr.dm @@ -31,6 +31,14 @@ if(!length(touchable_atoms)) return + var/datum/digest_mode/DM = GLOB.digest_modes["[digest_mode]"] + if(!DM) + log_debug("Digest mode [digest_mode] didn't exist in the digest_modes list!!") + return FALSE + if(DM.handle_atoms(src, touchable_atoms)) + updateVRPanels() + return + var/list/touchable_mobs = null var/list/hta_returns = handle_touchable_atoms(touchable_atoms) @@ -54,11 +62,6 @@ continue // don't give digesty messages to indigestible people to_chat(M, "[pick(EL)]") - var/datum/digest_mode/DM = GLOB.digest_modes["[digest_mode]"] - if(!DM) - log_debug("Digest mode [digest_mode] didn't exist in the digest_modes list!!") - return FALSE - if(!digestion_noise_chance) digestion_noise_chance = DM.noise_chance @@ -99,62 +102,6 @@ var/digestion_noise_chance = 0 var/list/touchable_mobs = list() - if(digest_mode == DM_EGG) - var/list/egg_contents = list() - for(var/E in touchable_atoms) - if(istype(E, /obj/item/weapon/storage/vore_egg)) // Don't egg other eggs. - continue - if(isliving(E)) - var/mob/living/L = E - if(L.absorbed) - continue - egg_contents += L - if(isitem(E)) - egg_contents += E - if(egg_contents.len) - if(!ownegg) - if(owner.vore_egg_type in tf_vore_egg_types) - egg_type = owner.vore_egg_type - egg_path = tf_vore_egg_types[egg_type] - ownegg = new egg_path(src) - for(var/atom/movable/C in egg_contents) - if(isitem(C) && egg_contents.len == 1) //Only egging one item - var/obj/item/I = C - ownegg.w_class = I.w_class - ownegg.max_storage_space = ownegg.w_class - I.forceMove(ownegg) - ownegg.icon_scale_x = 0.2 * ownegg.w_class - ownegg.icon_scale_y = 0.2 * ownegg.w_class - ownegg.update_transform() - egg_contents -= I - ownegg = null - break - if(isliving(C)) - var/mob/living/M = C - ownegg.w_class = M.size_multiplier * 4 //Egg size and weight scaled to match occupant. - var/obj/item/weapon/holder/H = new M.holder_type(ownegg) - H.held_mob = M - M.forceMove(H) - ownegg.max_storage_space = H.w_class - ownegg.icon_scale_x = 0.25 * ownegg.w_class - ownegg.icon_scale_y = 0.25 * ownegg.w_class - ownegg.update_transform() - egg_contents -= M - ownegg = null - break - C.forceMove(ownegg) - if(isitem(C)) - var/obj/item/I = C - ownegg.w_class += I.w_class //Let's assume a regular outfit can reach total w_class of 20. - ownegg.calibrate_size() - ownegg.orient2hud() - ownegg.w_class = clamp(ownegg.w_class * 0.2, 1, 8) //A total w_class of 20 will result in a backpack sized egg. - ownegg.icon_scale_x = 0.2 * ownegg.w_class - ownegg.icon_scale_y = 0.2 * ownegg.w_class - ownegg.update_transform() - ownegg = null - return list("to_update" = to_update, "touchable_mobs" = touchable_mobs, "digestion_noise_chance" = digestion_noise_chance) - for(var/A in touchable_atoms) //Handle stray items if(isitem(A) && !did_an_item) From ed960e00248882526781d79084fdfd5c20c3d80b Mon Sep 17 00:00:00 2001 From: Verkister Date: Fri, 29 Jan 2021 17:46:45 +0200 Subject: [PATCH 07/19] Adds slowdown to overweight eggs. --- code/modules/vore/eating/bellymodes_datum_vr.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/vore/eating/bellymodes_datum_vr.dm b/code/modules/vore/eating/bellymodes_datum_vr.dm index 48abf3db5d7..c1f01db31e5 100644 --- a/code/modules/vore/eating/bellymodes_datum_vr.dm +++ b/code/modules/vore/eating/bellymodes_datum_vr.dm @@ -183,6 +183,8 @@ GLOBAL_LIST_INIT(digest_modes, list()) B.ownegg.icon_scale_y = 0.25 * B.ownegg.w_class B.ownegg.update_transform() egg_contents -= M + if(B.ownegg.w_class > 4) + B.ownegg.slowdown = B.ownegg.w_class - 4 B.ownegg = null break C.forceMove(B.ownegg) @@ -195,5 +197,7 @@ GLOBAL_LIST_INIT(digest_modes, list()) B.ownegg.icon_scale_x = 0.25 * B.ownegg.w_class B.ownegg.icon_scale_y = 0.25 * B.ownegg.w_class B.ownegg.update_transform() + if(B.ownegg.w_class > 4) + B.ownegg.slowdown = B.ownegg.w_class - 4 B.ownegg = null return \ No newline at end of file From ac93d0e6cda33ee88280fbe7541c04d3af444258 Mon Sep 17 00:00:00 2001 From: Verkister Date: Fri, 29 Jan 2021 20:03:31 +0200 Subject: [PATCH 08/19] Fixes the setup button --- code/_helpers/global_lists_vr.dm | 31 +++++++++++++++++++ .../client/preference_setup/vore/03_egg.dm | 6 ++-- 2 files changed, 34 insertions(+), 3 deletions(-) diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index 6af71afacfb..7a49e8b3875 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -107,6 +107,37 @@ var/global/list/fancy_release_sounds = list( "None" = null ) +var/global/list/global_vore_egg_types = list( + "Unathi", + "Tajara", + "Akula", + "Skrell", + "Sergal", + "Nevrean", + "Human", + "Slime", + "Egg", + "Xenochimera", + "Xenomorph", + "Chocolate", + "Boney", + "Slime glob", + "Chicken", + "Synthetic", + "Cooking error", + "Escape pod", + "Web cocoon", + "Bug cocoon", + "Rock", + "Yellow", + "Blue", + "Green", + "Orange", + "Purple", + "Red", + "Rainbow", + "Spotted pink") + var/global/list/tf_vore_egg_types = list( "Unathi" = /obj/item/weapon/storage/vore_egg/unathi, "Tajara" = /obj/item/weapon/storage/vore_egg/tajaran, diff --git a/code/modules/client/preference_setup/vore/03_egg.dm b/code/modules/client/preference_setup/vore/03_egg.dm index b01cc1c26e6..6c090478d5e 100644 --- a/code/modules/client/preference_setup/vore/03_egg.dm +++ b/code/modules/client/preference_setup/vore/03_egg.dm @@ -14,7 +14,7 @@ S["vore_egg_type"] << pref.vore_egg_type /datum/category_item/player_setup_item/vore/egg/sanitize_character() - pref.vore_egg_type = sanitize_inlist(pref.vore_egg_type, tf_vore_egg_types, initial(pref.vore_egg_type)) + pref.vore_egg_type = sanitize_inlist(pref.vore_egg_type, global_vore_egg_types, initial(pref.vore_egg_type)) /datum/category_item/player_setup_item/vore/egg/copy_to_mob(var/mob/living/carbon/human/character) character.vore_egg_type = pref.vore_egg_type @@ -28,10 +28,10 @@ return TOPIC_NOACTION else if(href_list["vore_egg_type"]) - var/list/vore_egg_types = tf_vore_egg_types + var/list/vore_egg_types = global_vore_egg_types var/selection = input(user, "Choose your character's egg type:", "Character Preference", pref.vore_egg_type) as null|anything in vore_egg_types if(selection) - pref.vore_egg_type = vore_egg_types[selection] + pref.vore_egg_type = selection return TOPIC_REFRESH else return From b435e756c9f654ecb99738f269d27a6555d038e5 Mon Sep 17 00:00:00 2001 From: Verkister Date: Mon, 1 Feb 2021 15:13:33 +0200 Subject: [PATCH 09/19] Makes bellied eggs relay their struggles onto the belly. --- .../objects/items/weapons/storage/egg_vr.dm | 23 +---------------- code/modules/vore/eating/belly_obj_vr.dm | 25 +++++++++++++++---- .../vore/eating/bellymodes_datum_vr.dm | 4 +-- code/modules/vore/resizing/holder_micro_vr.dm | 20 +++++++++++++++ 4 files changed, 43 insertions(+), 29 deletions(-) diff --git a/code/game/objects/items/weapons/storage/egg_vr.dm b/code/game/objects/items/weapons/storage/egg_vr.dm index 6eef606929a..0ea3b673e10 100644 --- a/code/game/objects/items/weapons/storage/egg_vr.dm +++ b/code/game/objects/items/weapons/storage/egg_vr.dm @@ -10,7 +10,7 @@ slot_l_hand_str = 'icons/mob/items/lefthand_storage.dmi', slot_r_hand_str = 'icons/mob/items/righthand_storage.dmi', ) - w_class = 0 + w_class = 2 max_w_class = 0 show_messages = 0 allow_quick_empty = TRUE @@ -180,24 +180,3 @@ name = "spotted pink egg" desc = "It is a cute pink egg with white spots." icon_state = "egg_pinkspots" - -/obj/item/weapon/holder/attack_hand(mob/living/user as mob) - if(istype(src.loc, /obj/item/weapon/storage/vore_egg)) //Don't scoop up the egged mob - src.pickup(user) - user.drop_from_inventory(src) - return - ..() - -/obj/item/weapon/holder/container_resist(mob/living/held) - if(istype(src.loc, /obj/item/weapon/storage/vore_egg)) - var/obj/item/weapon/storage/vore_egg/E = src.loc - if(isbelly(E.loc)) - var/confirm = alert(held, - "Are you sure you wish to hatch inside your captor?", - "Confirmation", - "Proceed", "Cancel") - if(!confirm == "Proceed") - return - E.hatch(held) - return - ..() \ No newline at end of file diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index e5d11bc42b1..0889c29933b 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -552,9 +552,10 @@ //Handle a mob struggling // Called from /mob/living/carbon/relaymove() -/obj/belly/proc/relay_resist(mob/living/R) +/obj/belly/proc/relay_resist(mob/living/R, obj/item/C) if (!(R in contents)) - return // User is not in this belly + if(!C) + return // User is not in this belly R.setClickCooldown(50) @@ -563,9 +564,13 @@ to_chat(owner, "Someone is attempting to climb out of your [lowertext(name)]!") if(do_after(R, escapetime, owner, incapacitation_flags = INCAPACITATION_DEFAULT & ~INCAPACITATION_RESTRAINED)) - if((owner.stat || escapable) && (R.loc == src)) //Can still escape? - release_specific_contents(R) - return + if((owner.stat || escapable)) //Can still escape? + if(C) + release_specific_contents(C) + return + if(R.loc == src) + release_specific_contents(R) + return else if(R.loc != src) //Aren't even in the belly. Quietly fail. return else //Belly became inescapable or mob revived @@ -608,6 +613,13 @@ to_chat(R, "You start to climb out of \the [lowertext(name)].") to_chat(owner, "Someone is attempting to climb out of your [lowertext(name)]!") if(do_after(R, escapetime)) + if(escapable && C) + release_specific_contents(C) + to_chat(R,"Your struggles successfully cause [owner] to squeeze your container out of their \the [lowertext(name)].") + to_chat(owner,"[C] suddenly slips out of your [lowertext(name)]!") + for(var/mob/M in hearers(4, owner)) + M.show_message("[C] suddenly slips out of [owner]'s [lowertext(name)]!", 2) + return if((escapable) && (R.loc == src) && !R.absorbed) //Does the owner still have escapable enabled? release_specific_contents(R) to_chat(R,"You climb out of \the [lowertext(name)].") @@ -638,6 +650,9 @@ to_chat(R, "Your attempt to escape [lowertext(name)] has failed and your struggles only results in you sliding into [owner]'s [transferlocation]!") to_chat(owner, "Someone slid into your [transferlocation] due to their struggling inside your [lowertext(name)]!") + if(C) + transfer_contents(C, dest_belly) + return transfer_contents(R, dest_belly) return diff --git a/code/modules/vore/eating/bellymodes_datum_vr.dm b/code/modules/vore/eating/bellymodes_datum_vr.dm index c1f01db31e5..e00860cadaa 100644 --- a/code/modules/vore/eating/bellymodes_datum_vr.dm +++ b/code/modules/vore/eating/bellymodes_datum_vr.dm @@ -170,7 +170,7 @@ GLOBAL_LIST_INIT(digest_modes, list()) B.ownegg.update_transform() egg_contents -= I B.ownegg = null - break + return if(isliving(C)) var/mob/living/M = C B.ownegg.w_class = M.size_multiplier * 4 //Egg size and weight scaled to match occupant. @@ -186,7 +186,7 @@ GLOBAL_LIST_INIT(digest_modes, list()) if(B.ownegg.w_class > 4) B.ownegg.slowdown = B.ownegg.w_class - 4 B.ownegg = null - break + return C.forceMove(B.ownegg) if(isitem(C)) var/obj/item/I = C diff --git a/code/modules/vore/resizing/holder_micro_vr.dm b/code/modules/vore/resizing/holder_micro_vr.dm index 4e7b63e0b98..b0bfbcc5b42 100644 --- a/code/modules/vore/resizing/holder_micro_vr.dm +++ b/code/modules/vore/resizing/holder_micro_vr.dm @@ -48,3 +48,23 @@ ..() for(var/mob/living/carbon/human/I in contents) item_state = lowertext(I.species.name) + +//Egg features. +/obj/item/weapon/holder/attack_hand(mob/living/user as mob) + if(istype(src.loc, /obj/item/weapon/storage/vore_egg)) //Don't scoop up the egged mob + src.pickup(user) + user.drop_from_inventory(src) + return + ..() + +/obj/item/weapon/holder/container_resist(mob/living/held) + if(!istype(src.loc, /obj/item/weapon/storage/vore_egg)) + ..() + else + var/obj/item/weapon/storage/vore_egg/E = src.loc + if(isbelly(E.loc)) + var/obj/belly/B = E.loc + B.relay_resist(held, E) + return + E.hatch(held) + return From e4b0f292f83b2116d4c33ac89aabb98b3984b9fa Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 2 Feb 2021 00:45:28 -0500 Subject: [PATCH 10/19] Uplink and Adminverb Tweaks - Tweaks the proc for Virgo uplink beacons to not give away information about traitors - Removes the Void Cell from antag uplinks - Adds a combat defibrillator for Mercenaries - Adds the cabin shelter capsule to uplinks - Adds some stuff for admin use of uplinks - Fixes bug with adminspawn ERT job not getting PDAs - Adds an admin command to set up an uplink on a character - Fixes Retired Admin to work properly - Splits off VORE's adminverb list for improved downstream support - Fixes retired staff not being able to talk in staff chats --- code/datums/outfits/jobs/special_vr.dm | 5 +- code/datums/uplink/ammunition_vr.dm | 2 + code/datums/uplink/backup.dm | 6 +- code/datums/uplink/medical_vr.dm | 7 + code/datums/uplink/tools_vr.dm | 5 + code/datums/uplink/visible_weapons.dm | 2 +- code/game/machinery/syndicatebeacon_vr.dm | 6 +- code/modules/admin/admin_verb_lists.dm | 8 +- code/modules/admin/admin_verb_lists_vr.dm | 570 ++++++++++++++++++++++ code/modules/admin/admin_vr.dm | 12 + code/modules/admin/verbs/adminsay.dm | 8 +- vorestation.dme | 3 +- 12 files changed, 617 insertions(+), 17 deletions(-) create mode 100644 code/modules/admin/admin_verb_lists_vr.dm create mode 100644 code/modules/admin/admin_vr.dm diff --git a/code/datums/outfits/jobs/special_vr.dm b/code/datums/outfits/jobs/special_vr.dm index 89c4883e92a..010010291dd 100644 --- a/code/datums/outfits/jobs/special_vr.dm +++ b/code/datums/outfits/jobs/special_vr.dm @@ -15,11 +15,14 @@ shoes = /obj/item/clothing/shoes/boots/swat gloves = /obj/item/clothing/gloves/swat l_ear = /obj/item/device/radio/headset/ert - belt = /obj/item/weapon/gun/energy/gun glasses = /obj/item/clothing/glasses/sunglasses back = /obj/item/weapon/storage/backpack/satchel id_type = /obj/item/weapon/card/id/centcom/ERT pda_type = /obj/item/device/pda/centcom + + post_equip(var/mob/living/carbon/human/H) + ..() + ert.add_antagonist(H.mind) /decl/hierarchy/outfit/job/clown name = OUTFIT_JOB_NAME("Clown") diff --git a/code/datums/uplink/ammunition_vr.dm b/code/datums/uplink/ammunition_vr.dm index 3235bb7311f..18235e53432 100644 --- a/code/datums/uplink/ammunition_vr.dm +++ b/code/datums/uplink/ammunition_vr.dm @@ -18,3 +18,5 @@ name = "Void cell" path = /obj/item/weapon/cell/device/weapon/recharge/alien/hybrid item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 1.5 + antag_roles = list("ert") + blacklisted = 1 diff --git a/code/datums/uplink/backup.dm b/code/datums/uplink/backup.dm index 40f2a468f67..3e21676da3b 100644 --- a/code/datums/uplink/backup.dm +++ b/code/datums/uplink/backup.dm @@ -11,7 +11,7 @@ This type comes with a directional shield projector, a supressive fire energy weapon, \ a stunbaton, handcuffs, an agent ID, energy sword, pinpointer, and a jetpack." item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 1.5 - antag_roles = list("mercenary") + antag_roles = list("mercenary", "ert") //VOREStation Edit path = /obj/item/weapon/antag_spawner/syndicate_drone/protector /datum/uplink_item/item/backup/syndicate_drone_combat_medic @@ -21,7 +21,7 @@ a powerful hypospray that can create many potent chemicals, an agent ID, energy \ sword, pinpointer, and a jetpack." item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 1.5 - antag_roles = list("mercenary") + antag_roles = list("mercenary", "ert") //VOREStation Edit path = /obj/item/weapon/antag_spawner/syndicate_drone/combat_medic /datum/uplink_item/item/backup/syndicate_drone_mechanist @@ -31,5 +31,5 @@ a cryptographic sequencer, an AI detector, the ability to analyze and repair full-body prosthetics, \ a set of construction materials, an ionic rapier, an agent ID, energy sword, pinpointer, and a jetpack." item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 1.5 - antag_roles = list("mercenary") + antag_roles = list("mercenary", "ert") //VOREStation Edit path = /obj/item/weapon/antag_spawner/syndicate_drone/mechanist \ No newline at end of file diff --git a/code/datums/uplink/medical_vr.dm b/code/datums/uplink/medical_vr.dm index 8f0264d3e9d..3ca972cdb9b 100644 --- a/code/datums/uplink/medical_vr.dm +++ b/code/datums/uplink/medical_vr.dm @@ -100,3 +100,10 @@ name = "Healing Nanite pill bottle" item_cost = 30 path = /obj/item/weapon/storage/pill_bottle/healing_nanites + +/datum/uplink_item/item/medical/defib + name = "Combat Defibrilator" + item_cost = 90 + path = /obj/item/device/defib_kit/compact/combat + antag_roles = list("mercenary", "ert") + blacklisted = 1 diff --git a/code/datums/uplink/tools_vr.dm b/code/datums/uplink/tools_vr.dm index 30b2cd725e0..b0464123ac9 100644 --- a/code/datums/uplink/tools_vr.dm +++ b/code/datums/uplink/tools_vr.dm @@ -26,6 +26,11 @@ item_cost = 5 path = /obj/item/device/survivalcapsule +/datum/uplink_item/item/tools/popcabin + name = "Cabin Capsule" + item_cost = 5 + path = /obj/item/device/survivalcapsule/popcabin + /datum/uplink_item/item/tools/nanopaste name = "Nanopaste (Advanced)" item_cost = 10 diff --git a/code/datums/uplink/visible_weapons.dm b/code/datums/uplink/visible_weapons.dm index d3ed1dcec34..b939e953de3 100644 --- a/code/datums/uplink/visible_weapons.dm +++ b/code/datums/uplink/visible_weapons.dm @@ -103,7 +103,7 @@ name = "Anti-Materiel Rifle (14.5mm)" item_cost = DEFAULT_TELECRYSTAL_AMOUNT path = /obj/item/weapon/gun/projectile/heavysniper - antag_roles = list("mercenary") + antag_roles = list("mercenary", "ert") //VOREStation Edit /datum/uplink_item/item/visible_weapons/heavysnipertraitor name = "Anti-Materiel Rifle (14.5mm)" diff --git a/code/game/machinery/syndicatebeacon_vr.dm b/code/game/machinery/syndicatebeacon_vr.dm index ef6b3da0bbf..2a7b2df56bd 100644 --- a/code/game/machinery/syndicatebeacon_vr.dm +++ b/code/game/machinery/syndicatebeacon_vr.dm @@ -25,7 +25,7 @@ updateUsrDialog() return var/mob/M = locate(href_list["traitormob"]) - if(M.mind.special_role || jobban_isbanned(M, "Syndicate")) + if(M.mind.tcrystals || jobban_isbanned(M, "Syndicate")) temptext = "We have no need for you at this time. Have a pleasant day.
" updateUsrDialog() return @@ -33,7 +33,9 @@ if(istype(M, /mob/living/carbon/human)) var/mob/living/carbon/human/N = M to_chat(N, "Access granted, here are the supplies!") - traitors.equip(N) + traitors.spawn_uplink(N) + N.mind.tcrystals = DEFAULT_TELECRYSTAL_AMOUNT + N.mind.accept_tcrystals = 1 message_admins("[N]/([N.ckey]) has recieved an uplink and telecrystals from the syndicate beacon.") updateUsrDialog() diff --git a/code/modules/admin/admin_verb_lists.dm b/code/modules/admin/admin_verb_lists.dm index 0eaedc9fbeb..3fa8903f72d 100644 --- a/code/modules/admin/admin_verb_lists.dm +++ b/code/modules/admin/admin_verb_lists.dm @@ -104,7 +104,6 @@ var/list/admin_verbs_admin = list( /client/proc/toggle_attack_logs, /datum/admins/proc/paralyze_mob, /client/proc/fixatmos, - /datum/admins/proc/quick_nif, //VOREStation Add, /datum/admins/proc/sendFax, /client/proc/despawn_player, /datum/admins/proc/view_feedback @@ -139,7 +138,6 @@ var/list/admin_verbs_fun = list( /datum/admins/proc/call_supply_drop, /datum/admins/proc/call_drop_pod, /client/proc/smite, - /client/proc/smite_vr, //VOREStation Add, /client/proc/admin_lightning_strike, ) @@ -150,7 +148,6 @@ var/list/admin_verbs_spawn = list( /datum/admins/proc/spawn_plant, /datum/admins/proc/spawn_atom, //allows us to spawn instances, /client/proc/respawn_character, - /client/proc/spawn_character_mob, //VOREStation Add, /client/proc/virus2_editor, /client/proc/spawn_chemdisp_cartridge, /client/proc/map_template_load, @@ -181,6 +178,7 @@ var/list/admin_verbs_server = list( /datum/admins/proc/toggle_space_ninja, /client/proc/toggle_random_events, /client/proc/check_customitem_activity, + /client/proc/nanomapgen_DumpImage, /client/proc/modify_server_news, /client/proc/recipe_dump, /client/proc/panicbunker, @@ -228,7 +226,7 @@ var/list/admin_verbs_debug = list( /client/proc/toggle_debug_logs, /client/proc/admin_ghost, //allows us to ghost/reenter body at will, /datum/admins/proc/view_runtimes, - // /client/proc/show_gm_status, // VOREStation Edit - We don't use SSgame_master yet. + /client/proc/show_gm_status, /datum/admins/proc/change_weather, /datum/admins/proc/change_time, /client/proc/admin_give_modifier, @@ -403,7 +401,7 @@ var/list/admin_verbs_event_manager = list( /client/proc/callproc, /client/proc/callproc_datum, /client/proc/debug_controller, - // /client/proc/show_gm_status, // VOREStation Edit - We don't use SSgame_master yet. + /client/proc/show_gm_status, /datum/admins/proc/change_weather, /datum/admins/proc/change_time, /client/proc/admin_give_modifier, diff --git a/code/modules/admin/admin_verb_lists_vr.dm b/code/modules/admin/admin_verb_lists_vr.dm new file mode 100644 index 00000000000..32859c234f4 --- /dev/null +++ b/code/modules/admin/admin_verb_lists_vr.dm @@ -0,0 +1,570 @@ +//admin verb groups - They can overlap if you so wish. Only one of each verb will exist in the verbs list regardless +var/list/admin_verbs_default = list( +// /datum/admins/proc/show_player_panel, //shows an interface for individual players, with various links (links require additional flags, //VOREStation Remove, +// /client/proc/player_panel_new, //shows an interface for all players, with links to various panels, //VOREStation Remove, +// /client/proc/player_panel, //VOREStation Remove, + /client/proc/deadmin_self, //destroys our own admin datum so we can play as a regular player, + /client/proc/cmd_admin_say, //VOREStation Add, + /client/proc/cmd_mod_say, //VOREStation Add, + /client/proc/cmd_event_say, //VOREStation Add, +// /client/proc/hide_verbs, //hides all our adminverbs, //VOREStation Remove, +// /client/proc/hide_most_verbs, //hides all our hideable adminverbs, //VOREStation Remove, +// /client/proc/debug_variables, //allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify, //VOREStation Remove, +// /client/proc/mark_datum_mapview, //VOREStation Remove, +// /client/proc/cmd_check_new_players, //allows us to see every new player, //VOREStation Remove, +// /client/proc/check_antagonists, //shows all antags, +// /client/proc/cmd_mod_say, +// /client/proc/deadchat //toggles deadchat on/off, +// /client/proc/toggle_ahelp_sound, + ) + +var/list/admin_verbs_admin = list( + /datum/admins/proc/set_tcrystals, + /datum/admins/proc/add_tcrystals, + /client/proc/invisimin, //allows our mob to go invisible/visible, + /datum/admins/proc/show_traitor_panel, //interface which shows a mob's mind., + /datum/admins/proc/show_game_mode, //Configuration window for the current game mode., + /datum/admins/proc/force_mode_latespawn, //Force the mode to try a latespawn proc, + /datum/admins/proc/force_antag_latespawn, //Force a specific template to try a latespawn proc, + /datum/admins/proc/toggleenter, //toggles whether people can join the current game, + /datum/admins/proc/toggleguests, //toggles whether guests can join the current game, + /datum/admins/proc/announce, //priority announce something to all clients., + /datum/admins/proc/intercom, //send a fake intercom message, like an arrivals announcement, + /datum/admins/proc/intercom_convo, //send a fake intercom conversation, like an ATC exchange, + /client/proc/colorooc, //allows us to set a custom colour for everythign we say in ooc, + /client/proc/admin_ghost, //allows us to ghost/reenter body at will, + /datum/admins/proc/show_player_panel, //shows an interface for individual players, with various links (links require additional flags, //VOREStation Add, + /client/proc/player_panel_new, //shows an interface for all players, with links to various panels, //VOREStation Add, + /client/proc/player_panel, //VOREStation Add, + /client/proc/hide_verbs, //hides all our adminverbs, //VOREStation Add, + /client/proc/hide_most_verbs, //hides all our hideable adminverbs, //VOREStation Add, + /client/proc/debug_variables, //allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify, //VOREStation Add, + /client/proc/mark_datum_mapview, //VOREStation Add, + /client/proc/cmd_check_new_players, //allows us to see every new player, //VOREStation Add, + /client/proc/toggle_view_range, //changes how far we can see, + /datum/admins/proc/view_txt_log, //shows the server log (diary) for today, + /datum/admins/proc/view_atk_log, //shows the server combat-log, doesn't do anything presently, + /client/proc/cmd_admin_pm_context, //right-click adminPM interface, + /client/proc/cmd_admin_pm_panel, //admin-pm list, + /client/proc/cmd_admin_subtle_message, //send an message to somebody as a 'voice in their head', + /client/proc/cmd_admin_delete, //delete an instance/object/mob/etc, + /client/proc/cmd_admin_check_contents, //displays the contents of an instance, + /client/proc/cmd_admin_check_player_logs, //checks a player's attack logs, + /client/proc/cmd_admin_check_dialogue_logs, //checks a player's dialogue logs, + /datum/admins/proc/access_news_network, //allows access of newscasters, + /client/proc/giveruntimelog, //allows us to give access to runtime logs to somebody, + /client/proc/getserverlog, //allows us to fetch server logs (diary) for other days, + /client/proc/jumptocoord, //we ghost and jump to a coordinate, + /client/proc/Getmob, //teleports a mob to our location, + /client/proc/Getkey, //teleports a mob with a certain ckey to our location, +// /client/proc/sendmob, //sends a mob somewhere, -Removed due to it needing two sorting procs to work, which were executed every time an admin right-clicked. ~Errorage, + /client/proc/Jump, + /client/proc/jumptokey, //allows us to jump to the location of a mob with a certain ckey, + /client/proc/jumptomob, //allows us to jump to a specific mob, + /client/proc/jumptoturf, //allows us to jump to a specific turf, + /client/proc/admin_call_shuttle, //allows us to call the emergency shuttle, + /client/proc/admin_cancel_shuttle, //allows us to cancel the emergency shuttle, sending it back to CentCom, + /client/proc/cmd_admin_direct_narrate, //send text directly to a player with no padding. Useful for narratives and fluff-text, + /client/proc/cmd_admin_world_narrate, //sends text to all players with no padding, + /client/proc/cmd_admin_create_centcom_report, + /client/proc/check_words, //displays cult-words, + /client/proc/check_ai_laws, //shows AI and borg laws, + /client/proc/rename_silicon, //properly renames silicons, + /client/proc/manage_silicon_laws, // Allows viewing and editing silicon laws. , + /client/proc/check_antagonists, + /client/proc/admin_memo, //admin memo system. show/delete/write. +SERVER needed to delete admin memos of others, + /client/proc/dsay, //talk in deadchat using our ckey/fakekey, +// /client/proc/toggle_hear_deadcast, //toggles whether we hear deadchat, + /client/proc/investigate_show, //various admintools for investigation. Such as a singulo grief-log, + /client/proc/secrets, + /datum/admins/proc/toggleooc, //toggles ooc on/off for everyone, + /datum/admins/proc/togglelooc, //toggles looc on/off for everyone, + /datum/admins/proc/toggleoocdead, //toggles ooc on/off for everyone who is dead, + /datum/admins/proc/togglehubvisibility, //toggles visibility on the BYOND Hub., + /datum/admins/proc/toggledsay, //toggles dsay on/off for everyone, + /client/proc/game_panel, //game panel, allows to change game-mode etc, + /client/proc/cmd_admin_say, //admin-only ooc chat, + /client/proc/cmd_mod_say, + /client/proc/cmd_event_say, + /datum/admins/proc/PlayerNotes, + /datum/admins/proc/show_player_info, + /client/proc/free_slot, //frees slot for chosen job, + /client/proc/cmd_admin_change_custom_event, + /client/proc/cmd_admin_rejuvenate, + /client/proc/toggleghostwriters, + /client/proc/toggledrones, + /datum/admins/proc/show_skills, + /client/proc/check_customitem_activity, + /client/proc/man_up, + /client/proc/global_man_up, + /client/proc/response_team, // Response Teams admin verb, + /client/proc/trader_ship, // Trader ship admin verb, + /client/proc/toggle_antagHUD_use, + /client/proc/toggle_antagHUD_restrictions, + /client/proc/allow_character_respawn, // Allows a ghost to respawn , + /client/proc/event_manager_panel, + /client/proc/empty_ai_core_toggle_latejoin, + /client/proc/empty_ai_core_toggle_latejoin, + /client/proc/aooc, + /client/proc/change_human_appearance_admin, // Allows an admin to change the basic appearance of human-based mobs , + /client/proc/change_human_appearance_self, // Allows the human-based mob itself change its basic appearance , + /client/proc/change_security_level, + /client/proc/view_chemical_reaction_logs, + /client/proc/makePAI, + /client/proc/toggle_debug_logs, + /client/proc/toggle_attack_logs, + /datum/admins/proc/paralyze_mob, + /client/proc/fixatmos, + /datum/admins/proc/quick_nif, //VOREStation Add, + /datum/admins/proc/set_uplink, //VOREStation Add, + /datum/admins/proc/sendFax, + /client/proc/despawn_player, + /datum/admins/proc/view_feedback + ) + +var/list/admin_verbs_ban = list( + /client/proc/unban_panel, + /client/proc/jobbans + ) + +var/list/admin_verbs_sounds = list( + /client/proc/play_local_sound, + /client/proc/play_sound, + /client/proc/play_server_sound + ) + +var/list/admin_verbs_fun = list( + /client/proc/object_talk, + /datum/admins/proc/cmd_admin_dress, + /client/proc/cmd_admin_gib_self, + /client/proc/drop_bomb, + /client/proc/everyone_random, + /client/proc/cinematic, + /datum/admins/proc/toggle_aliens, + /datum/admins/proc/toggle_space_ninja, + /client/proc/cmd_admin_add_freeform_ai_law, + /client/proc/cmd_admin_add_random_ai_law, + /client/proc/make_sound, + /client/proc/toggle_random_events, + /client/proc/editappear, + /client/proc/roll_dices, + /datum/admins/proc/call_supply_drop, + /datum/admins/proc/call_drop_pod, + /client/proc/smite, + /client/proc/smite_vr, //VOREStation Add, + /client/proc/admin_lightning_strike, + ) + +var/list/admin_verbs_spawn = list( + /datum/admins/proc/spawn_fruit, + /datum/admins/proc/spawn_custom_item, + /datum/admins/proc/check_custom_items, + /datum/admins/proc/spawn_plant, + /datum/admins/proc/spawn_atom, //allows us to spawn instances, + /client/proc/respawn_character, + /client/proc/spawn_character_mob, //VOREStation Add, + /client/proc/virus2_editor, + /client/proc/spawn_chemdisp_cartridge, + /client/proc/map_template_load, + /client/proc/map_template_upload, + /client/proc/map_template_load_on_new_z + ) + +var/list/admin_verbs_server = list( + /datum/admins/proc/capture_map, + /client/proc/Set_Holiday, + /client/proc/ToRban, + /datum/admins/proc/startnow, + /datum/admins/proc/restart, + /datum/admins/proc/delay, + /datum/admins/proc/toggleaban, + /datum/admins/proc/togglepersistence, + /client/proc/cmd_mod_say, + /client/proc/toggle_log_hrefs, + /datum/admins/proc/immreboot, + /client/proc/everyone_random, + /datum/admins/proc/toggleAI, + /client/proc/cmd_admin_delete, //delete an instance/object/mob/etc, + /client/proc/cmd_debug_del_all, + /datum/admins/proc/adrev, + /datum/admins/proc/adspawn, + /datum/admins/proc/adjump, + /datum/admins/proc/toggle_aliens, + /datum/admins/proc/toggle_space_ninja, + /client/proc/toggle_random_events, + /client/proc/check_customitem_activity, + /client/proc/modify_server_news, + /client/proc/recipe_dump, + /client/proc/panicbunker, + /client/proc/paranoia_logging, + /client/proc/ip_reputation + ) + +var/list/admin_verbs_debug = list( + /client/proc/getruntimelog, //allows us to access runtime logs to somebody, + /client/proc/cmd_admin_list_open_jobs, + /client/proc/Debug2, + /client/proc/kill_air, + /client/proc/ZASSettings, + /client/proc/cmd_debug_make_powernets, + /client/proc/kill_airgroup, + /client/proc/debug_controller, + /client/proc/debug_antagonist_template, + /client/proc/cmd_debug_mob_lists, + /client/proc/cmd_debug_using_map, + /client/proc/cmd_admin_delete, + /client/proc/cmd_debug_del_all, + /client/proc/cmd_debug_tog_aliens, + /client/proc/cmd_display_del_log, + /client/proc/cmd_display_init_log, + /client/proc/cmd_display_overlay_log, + /client/proc/air_report, + /client/proc/reload_admins, + /client/proc/reload_eventMs, + /client/proc/restart_controller, + /datum/admins/proc/restart, + /client/proc/print_random_map, + /client/proc/create_random_map, + /client/proc/apply_random_map, + /client/proc/overlay_random_map, + /client/proc/delete_random_map, + /client/proc/show_plant_genes, + /client/proc/enable_debug_verbs, + /client/proc/callproc, + /client/proc/callproc_datum, + /client/proc/SDQL2_query, + /client/proc/Jump, + /client/proc/jumptomob, + /client/proc/jumptocoord, + /client/proc/dsay, + /client/proc/toggle_debug_logs, + /client/proc/admin_ghost, //allows us to ghost/reenter body at will, + /datum/admins/proc/show_player_panel, //shows an interface for individual players, with various links (links require additional flags, //VOREStation Add, + /client/proc/player_panel_new, //shows an interface for all players, with links to various panels, //VOREStation Add, + /client/proc/player_panel, //VOREStation Add, + /client/proc/hide_verbs, //hides all our adminverbs, //VOREStation Add, + /client/proc/hide_most_verbs, //hides all our hideable adminverbs, //VOREStation Add, + /client/proc/debug_variables, //allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify, //VOREStation Add, + /client/proc/mark_datum_mapview, //VOREStation Add, + /client/proc/cmd_check_new_players, //allows us to see every new player, //VOREStation Add, + /datum/admins/proc/view_runtimes, + // /client/proc/show_gm_status, // VOREStation Edit - We don't use SSgame_master yet. + /datum/admins/proc/set_uplink, //VOREStation Add, + /datum/admins/proc/change_weather, + /datum/admins/proc/change_time, + /client/proc/admin_give_modifier, + /client/proc/simple_DPS, + /datum/admins/proc/view_feedback + ) + +var/list/admin_verbs_paranoid_debug = list( + /client/proc/callproc, + /client/proc/callproc_datum, + /client/proc/debug_controller + ) + +var/list/admin_verbs_possess = list( + /proc/possess, + /proc/release + ) +var/list/admin_verbs_permissions = list( + /client/proc/edit_admin_permissions + ) +var/list/admin_verbs_rejuv = list( + /client/proc/respawn_character + ) + +//verbs which can be hidden - needs work +var/list/admin_verbs_hideable = list( + /client/proc/deadmin_self, +// /client/proc/deadchat, + /datum/admins/proc/show_traitor_panel, + /datum/admins/proc/toggleenter, + /datum/admins/proc/toggleguests, + /datum/admins/proc/announce, + /client/proc/colorooc, + /client/proc/admin_ghost, + /client/proc/toggle_view_range, + /datum/admins/proc/view_txt_log, + /datum/admins/proc/view_atk_log, + /client/proc/cmd_admin_subtle_message, + /client/proc/cmd_admin_check_contents, + /client/proc/cmd_admin_check_player_logs, + /client/proc/cmd_admin_check_dialogue_logs, + /datum/admins/proc/access_news_network, + /client/proc/admin_call_shuttle, + /client/proc/admin_cancel_shuttle, + /client/proc/cmd_admin_direct_narrate, + /client/proc/cmd_admin_world_narrate, + /client/proc/check_words, + /client/proc/play_local_sound, + /client/proc/play_sound, + /client/proc/play_server_sound, + /client/proc/object_talk, + /datum/admins/proc/cmd_admin_dress, + /client/proc/cmd_admin_gib_self, + /client/proc/drop_bomb, + /client/proc/cinematic, + /datum/admins/proc/toggle_aliens, + /datum/admins/proc/toggle_space_ninja, + /client/proc/cmd_admin_add_freeform_ai_law, + /client/proc/cmd_admin_add_random_ai_law, + /client/proc/cmd_admin_create_centcom_report, + /client/proc/make_sound, + /client/proc/toggle_random_events, + /client/proc/cmd_admin_add_random_ai_law, + /client/proc/Set_Holiday, + /client/proc/ToRban, + /datum/admins/proc/startnow, + /datum/admins/proc/restart, + /datum/admins/proc/delay, + /datum/admins/proc/toggleaban, + /client/proc/toggle_log_hrefs, + /datum/admins/proc/immreboot, + /client/proc/everyone_random, + /datum/admins/proc/toggleAI, + /datum/admins/proc/adrev, + /datum/admins/proc/adspawn, + /datum/admins/proc/adjump, + /client/proc/restart_controller, + /client/proc/cmd_admin_list_open_jobs, + /client/proc/callproc, + /client/proc/callproc_datum, + /client/proc/Debug2, + /client/proc/reload_admins, + /client/proc/kill_air, + /client/proc/cmd_debug_make_powernets, + /client/proc/kill_airgroup, + /client/proc/debug_controller, + /client/proc/startSinglo, + /client/proc/simple_DPS, + /client/proc/cmd_debug_mob_lists, + /client/proc/cmd_debug_using_map, + /client/proc/cmd_debug_del_all, + /client/proc/cmd_debug_tog_aliens, + /client/proc/cmd_display_del_log, + /client/proc/air_report, + /client/proc/enable_debug_verbs, + /client/proc/roll_dices, + /proc/possess, + /proc/release, + /datum/admins/proc/set_uplink, //VOREStation Add, + /datum/admins/proc/set_tcrystals + ) +var/list/admin_verbs_mod = list( + /client/proc/cmd_admin_pm_context, //right-click adminPM interface, + /client/proc/cmd_admin_pm_panel, //admin-pm list, + /client/proc/debug_variables, //allows us to -see- the variables of any instance in the game., + /datum/admins/proc/PlayerNotes, + /client/proc/admin_ghost, //allows us to ghost/reenter body at will, + /datum/admins/proc/show_player_panel, //shows an interface for individual players, with various links (links require additional flags, //VOREStation Add, + /client/proc/player_panel_new, //shows an interface for all players, with links to various panels, //VOREStation Add, + /client/proc/player_panel, //VOREStation Add, + /client/proc/hide_verbs, //hides all our adminverbs, //VOREStation Add, + /client/proc/hide_most_verbs, //hides all our hideable adminverbs, //VOREStation Add, + /client/proc/debug_variables, //allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify, //VOREStation Add, + /client/proc/mark_datum_mapview, //VOREStation Add, + /client/proc/cmd_check_new_players, //allows us to see every new player, //VOREStation Add, + /client/proc/cmd_mod_say, + /client/proc/cmd_event_say, + /datum/admins/proc/show_player_info, + /datum/admins/proc/show_traitor_panel, + /client/proc/colorooc, + /client/proc/player_panel_new, + /client/proc/dsay, + /datum/admins/proc/show_skills, + /datum/admins/proc/show_player_panel, + /client/proc/check_antagonists, + /client/proc/aooc, + /client/proc/jobbans, + /client/proc/toggle_attack_logs, + /client/proc/cmd_admin_subtle_message, //send an message to somebody as a 'voice in their head', + /datum/admins/proc/paralyze_mob, + /client/proc/cmd_admin_direct_narrate, + /client/proc/allow_character_respawn, // Allows a ghost to respawn , + /datum/admins/proc/sendFax, + /client/proc/getserverlog, //allows us to fetch server logs (diary) for other days, + /datum/admins/proc/view_persistent_data, + /datum/admins/proc/view_txt_log, //shows the server log (diary) for today, + /datum/admins/proc/view_atk_log //shows the server combat-log, doesn't do anything presently, +) + +var/list/admin_verbs_event_manager = list( + /client/proc/cmd_event_say, + /client/proc/cmd_admin_pm_context, + /client/proc/cmd_admin_pm_panel, + /client/proc/admin_ghost, + /datum/admins/proc/show_player_panel, //shows an interface for individual players, with various links (links require additional flags, //VOREStation Add, + /client/proc/player_panel_new, //shows an interface for all players, with links to various panels, //VOREStation Add, + /client/proc/player_panel, //VOREStation Add, + /client/proc/hide_verbs, //hides all our adminverbs, //VOREStation Add, + /client/proc/hide_most_verbs, //hides all our hideable adminverbs, //VOREStation Add, + /client/proc/debug_variables, //allows us to -see- the variables of any instance in the game. +VAREDIT needed to modify, //VOREStation Add, + /client/proc/mark_datum_mapview, //VOREStation Add, + /client/proc/cmd_check_new_players, //allows us to see every new player, //VOREStation Add, + /datum/admins/proc/show_player_info, + /client/proc/dsay, + /client/proc/cmd_admin_subtle_message, + /client/proc/debug_variables, + /client/proc/check_antagonists, + /client/proc/aooc, + /datum/admins/proc/paralyze_mob, + /client/proc/cmd_admin_direct_narrate, + /client/proc/allow_character_respawn, + /datum/admins/proc/sendFax, + /client/proc/respawn_character, + /proc/possess, + /proc/release, + /datum/admins/proc/change_weather, + /datum/admins/proc/change_time, + /client/proc/admin_give_modifier, + /client/proc/Jump, + /client/proc/jumptomob, + /client/proc/jumptocoord, + /client/proc/cmd_admin_delete, + /datum/admins/proc/delay, + /client/proc/Set_Holiday, + /client/proc/make_sound, + /client/proc/toggle_random_events, + /datum/admins/proc/cmd_admin_dress, + /client/proc/cmd_admin_gib_self, + /client/proc/drop_bomb, + /client/proc/cmd_admin_add_freeform_ai_law, + /client/proc/cmd_admin_add_random_ai_law, + /client/proc/make_sound, + /client/proc/toggle_random_events, + /client/proc/editappear, + /client/proc/roll_dices, + /datum/admins/proc/call_supply_drop, + /datum/admins/proc/call_drop_pod, + /datum/admins/proc/PlayerNotes, + /client/proc/callproc, + /client/proc/callproc_datum, + /client/proc/debug_controller, + // /client/proc/show_gm_status, // VOREStation Edit - We don't use SSgame_master yet. + /datum/admins/proc/change_weather, + /datum/admins/proc/change_time, + /client/proc/admin_give_modifier, + /datum/admins/proc/cmd_admin_dress, + /client/proc/cmd_admin_gib_self, + /datum/admins/proc/set_tcrystals, + /datum/admins/proc/add_tcrystals, + /client/proc/invisimin, //allows our mob to go invisible/visible, + /datum/admins/proc/show_traitor_panel, //interface which shows a mob's mind., + /datum/admins/proc/show_game_mode, //Configuration window for the current game mode., + /datum/admins/proc/force_mode_latespawn, //Force the mode to try a latespawn proc, + /datum/admins/proc/force_antag_latespawn, //Force a specific template to try a latespawn proc, + /datum/admins/proc/announce, //priority announce something to all clients., + /datum/admins/proc/intercom, //send a fake intercom message, like an arrivals announcement, + /datum/admins/proc/intercom_convo, //send a fake intercom conversation, like an ATC exchange, + /client/proc/colorooc, //allows us to set a custom colour for everythign we say in ooc, + /client/proc/admin_ghost, //allows us to ghost/reenter body at will, + /client/proc/toggle_view_range, //changes how far we can see, + /client/proc/cmd_admin_pm_context, //right-click adminPM interface, + /client/proc/cmd_admin_pm_panel, //admin-pm list, + /client/proc/cmd_admin_subtle_message, //send an message to somebody as a 'voice in their head', + /client/proc/cmd_admin_delete, //delete an instance/object/mob/etc, + /client/proc/cmd_admin_check_contents, //displays the contents of an instance, + /client/proc/cmd_admin_check_player_logs, //checks a player's attack logs, + /client/proc/cmd_admin_check_dialogue_logs, //checks a player's dialogue logs, + /datum/admins/proc/access_news_network, //allows access of newscasters, + /client/proc/jumptocoord, //we ghost and jump to a coordinate, + /client/proc/Getmob, //teleports a mob to our location, + /client/proc/Getkey, //teleports a mob with a certain ckey to our location, + /client/proc/Jump, + /client/proc/jumptokey, //allows us to jump to the location of a mob with a certain ckey, + /client/proc/jumptomob, //allows us to jump to a specific mob, + /client/proc/jumptoturf, //allows us to jump to a specific turf, + /client/proc/admin_call_shuttle, //allows us to call the emergency shuttle, + /client/proc/admin_cancel_shuttle, //allows us to cancel the emergency shuttle, sending it back to CentCom, + /client/proc/cmd_admin_direct_narrate, //send text directly to a player with no padding. Useful for narratives and fluff-text, + /client/proc/cmd_admin_world_narrate, //sends text to all players with no padding, + /client/proc/cmd_admin_create_centcom_report, + /client/proc/check_words, //displays cult-words, + /client/proc/check_ai_laws, //shows AI and borg laws, + /client/proc/rename_silicon, //properly renames silicons, + /client/proc/manage_silicon_laws, // Allows viewing and editing silicon laws. , + /client/proc/check_antagonists, + /client/proc/admin_memo, //admin memo system. show/delete/write. +SERVER needed to delete admin memos of others, + /client/proc/dsay, //talk in deadchat using our ckey/fakekey, + /client/proc/secrets, + /client/proc/game_panel, //game panel, allows to change game-mode etc, + /client/proc/cmd_mod_say, + /client/proc/cmd_event_say, + /datum/admins/proc/show_player_info, + /client/proc/free_slot, //frees slot for chosen job, + /client/proc/cmd_admin_change_custom_event, + /client/proc/cmd_admin_rejuvenate, + /client/proc/toggleghostwriters, + /datum/admins/proc/show_skills, + /client/proc/man_up, + /client/proc/global_man_up, + /client/proc/response_team, // Response Teams admin verb, + /client/proc/trader_ship, // Trader ship admin verb, + /client/proc/allow_character_respawn, // Allows a ghost to respawn , + /client/proc/event_manager_panel, + /client/proc/aooc, + /client/proc/change_human_appearance_admin, // Allows an admin to change the basic appearance of human-based mobs , + /client/proc/change_human_appearance_self, // Allows the human-based mob itself change its basic appearance , + /client/proc/change_security_level, + /client/proc/makePAI, + /client/proc/toggle_debug_logs, + /client/proc/toggle_attack_logs, + /datum/admins/proc/paralyze_mob, + /client/proc/fixatmos, + /datum/admins/proc/sendFax, + /client/proc/despawn_player, + /datum/admins/proc/view_feedback, + /datum/admins/proc/capture_map, + /client/proc/Set_Holiday, + /datum/admins/proc/startnow, + /datum/admins/proc/restart, + /datum/admins/proc/delay, + /client/proc/cmd_mod_say, + /datum/admins/proc/immreboot, + /client/proc/everyone_random, + /client/proc/cmd_admin_delete, //delete an instance/object/mob/etc, + /client/proc/cmd_debug_del_all, + /client/proc/toggle_random_events, + /client/proc/modify_server_news + +) + +/client/proc/add_admin_verbs() + if(holder) + verbs += admin_verbs_default + if(holder.rights & R_BUILDMODE) verbs += /client/proc/togglebuildmodeself + if(holder.rights & R_ADMIN) verbs += admin_verbs_admin + if(holder.rights & R_BAN) verbs += admin_verbs_ban + if(holder.rights & R_FUN) verbs += admin_verbs_fun + if(holder.rights & R_SERVER) verbs += admin_verbs_server + if(holder.rights & R_DEBUG) + verbs += admin_verbs_debug + if(config.debugparanoid && !(holder.rights & R_ADMIN)) + verbs.Remove(admin_verbs_paranoid_debug) //Right now it's just callproc but we can easily add others later on. + if(holder.rights & R_POSSESS) verbs += admin_verbs_possess + if(holder.rights & R_PERMISSIONS) verbs += admin_verbs_permissions + if(holder.rights & R_STEALTH) verbs += /client/proc/stealth + if(holder.rights & R_REJUVINATE) verbs += admin_verbs_rejuv + if(holder.rights & R_SOUNDS) verbs += admin_verbs_sounds + if(holder.rights & R_SPAWN) verbs += admin_verbs_spawn + if(holder.rights & R_MOD) verbs += admin_verbs_mod + if(holder.rights & R_EVENT) verbs += admin_verbs_event_manager + +/client/proc/remove_admin_verbs() + verbs.Remove( + admin_verbs_default, + /client/proc/togglebuildmodeself, + admin_verbs_admin, + admin_verbs_ban, + admin_verbs_fun, + admin_verbs_server, + admin_verbs_debug, + admin_verbs_possess, + admin_verbs_permissions, + /client/proc/stealth, + admin_verbs_rejuv, + admin_verbs_sounds, + admin_verbs_spawn, + debug_verbs + ) diff --git a/code/modules/admin/admin_vr.dm b/code/modules/admin/admin_vr.dm new file mode 100644 index 00000000000..356d69a3761 --- /dev/null +++ b/code/modules/admin/admin_vr.dm @@ -0,0 +1,12 @@ +/datum/admins/proc/set_uplink(mob/living/carbon/human/H as mob) + set category = "Debug" + set name = "Set Uplink" + set desc = "Allows admins to set up an uplink on a character. This will be required for a character to use telecrystals." + set popup_menu = FALSE + + if(check_rights(R_ADMIN|R_DEBUG)) + traitors.spawn_uplink(H) + H.mind.tcrystals = DEFAULT_TELECRYSTAL_AMOUNT + H.mind.accept_tcrystals = 1 + else + to_chat(usr, "You do not have access to this command.") \ No newline at end of file diff --git a/code/modules/admin/verbs/adminsay.dm b/code/modules/admin/verbs/adminsay.dm index ba75d453175..b9332751b56 100644 --- a/code/modules/admin/verbs/adminsay.dm +++ b/code/modules/admin/verbs/adminsay.dm @@ -11,9 +11,9 @@ log_adminsay(msg,src) - //VOREStation Edit Start - Adds R_EVENT + //VOREStation Edit Start - Adds R_STEALTH for(var/client/C in GLOB.admins) - if(check_rights(R_ADMIN|R_EVENT)) + if(check_rights(R_ADMIN|R_STEALTH)) to_chat(C, "" + create_text_tag("admin", "ADMIN:", C) + " [key_name(usr, 1)]([admin_jump_link(mob, src)]): [msg]") //VOREStation Edit End @@ -24,7 +24,7 @@ set name = "Msay" set hidden = 1 - if(!check_rights(R_ADMIN|R_MOD|R_SERVER|R_EVENT)) //VOREStation Edit + if(!check_rights(R_ADMIN|R_MOD|R_SERVER|R_STEALTH)) //VOREStation Edit return msg = sanitize(msg) @@ -47,7 +47,7 @@ set name = "Esay" set hidden = 1 - if(!check_rights(R_ADMIN|R_MOD|R_EVENT|R_SERVER|R_EVENT)) + if(!check_rights(R_ADMIN|R_MOD|R_EVENT|R_SERVER|R_STEALTH)) //VOREStation Edit return msg = sanitize(msg) diff --git a/vorestation.dme b/vorestation.dme index 7ea68b414c7..fd06341bb10 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -1579,8 +1579,9 @@ #include "code\modules\admin\admin_ranks.dm" #include "code\modules\admin\admin_secrets.dm" #include "code\modules\admin\admin_tools.dm" -#include "code\modules\admin\admin_verb_lists.dm" +#include "code\modules\admin\admin_verb_lists_vr.dm" #include "code\modules\admin\admin_verbs.dm" +#include "code\modules\admin\admin_vr.dm" #include "code\modules\admin\banjob.dm" #include "code\modules\admin\ckey_vr.dm" #include "code\modules\admin\create_mob.dm" From a6a2f82fc463f0d78a551e8a29a06e3131060e6c Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 2 Feb 2021 00:48:35 -0500 Subject: [PATCH 11/19] Forgot an operator --- code/game/machinery/syndicatebeacon_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/syndicatebeacon_vr.dm b/code/game/machinery/syndicatebeacon_vr.dm index 2a7b2df56bd..668b36dcb70 100644 --- a/code/game/machinery/syndicatebeacon_vr.dm +++ b/code/game/machinery/syndicatebeacon_vr.dm @@ -25,7 +25,7 @@ updateUsrDialog() return var/mob/M = locate(href_list["traitormob"]) - if(M.mind.tcrystals || jobban_isbanned(M, "Syndicate")) + if(M.mind.tcrystals > 0 || jobban_isbanned(M, "Syndicate")) temptext = "We have no need for you at this time. Have a pleasant day.
" updateUsrDialog() return From 6981c46f4dbc7f12059e9f0e3f29fc5fd8022e7a Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 2 Feb 2021 01:57:50 -0500 Subject: [PATCH 12/19] More fixes --- code/modules/admin/admin_verb_lists_vr.dm | 5 ++++ code/modules/admin/verbs/randomverbs.dm | 6 +++++ code/modules/admin/verbs/randomverbs_vr.dm | 27 +++++++++++++++++++++- 3 files changed, 37 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/admin_verb_lists_vr.dm b/code/modules/admin/admin_verb_lists_vr.dm index 32859c234f4..b024211d2cc 100644 --- a/code/modules/admin/admin_verb_lists_vr.dm +++ b/code/modules/admin/admin_verb_lists_vr.dm @@ -66,6 +66,7 @@ var/list/admin_verbs_admin = list( /client/proc/admin_cancel_shuttle, //allows us to cancel the emergency shuttle, sending it back to CentCom, /client/proc/cmd_admin_direct_narrate, //send text directly to a player with no padding. Useful for narratives and fluff-text, /client/proc/cmd_admin_world_narrate, //sends text to all players with no padding, + /client/proc/cmd_admin_z_narrate, //VOREStation Add, /client/proc/cmd_admin_create_centcom_report, /client/proc/check_words, //displays cult-words, /client/proc/check_ai_laws, //shows AI and borg laws, @@ -296,6 +297,7 @@ var/list/admin_verbs_hideable = list( /client/proc/admin_cancel_shuttle, /client/proc/cmd_admin_direct_narrate, /client/proc/cmd_admin_world_narrate, + /client/proc/cmd_admin_z_narrate, //VOREStation Add, /client/proc/check_words, /client/proc/play_local_sound, /client/proc/play_sound, @@ -381,6 +383,7 @@ var/list/admin_verbs_mod = list( /client/proc/cmd_admin_subtle_message, //send an message to somebody as a 'voice in their head', /datum/admins/proc/paralyze_mob, /client/proc/cmd_admin_direct_narrate, + /client/proc/cmd_admin_z_narrate, //VOREStation Add, /client/proc/allow_character_respawn, // Allows a ghost to respawn , /datum/admins/proc/sendFax, /client/proc/getserverlog, //allows us to fetch server logs (diary) for other days, @@ -410,6 +413,7 @@ var/list/admin_verbs_event_manager = list( /client/proc/aooc, /datum/admins/proc/paralyze_mob, /client/proc/cmd_admin_direct_narrate, + /client/proc/cmd_admin_z_narrate, //VOREStation Add, /client/proc/allow_character_respawn, /datum/admins/proc/sendFax, /client/proc/respawn_character, @@ -479,6 +483,7 @@ var/list/admin_verbs_event_manager = list( /client/proc/admin_cancel_shuttle, //allows us to cancel the emergency shuttle, sending it back to CentCom, /client/proc/cmd_admin_direct_narrate, //send text directly to a player with no padding. Useful for narratives and fluff-text, /client/proc/cmd_admin_world_narrate, //sends text to all players with no padding, + /client/proc/cmd_admin_z_narrate, //VOREStation Add, /client/proc/cmd_admin_create_centcom_report, /client/proc/check_words, //displays cult-words, /client/proc/check_ai_laws, //shows AI and borg laws, diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 2898145795b..58e982822b1 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -515,6 +515,12 @@ Traitors and the like can also be revived with the previous role mostly intact. if(new_character.mind) new_character.mind.loaded_from_ckey = picked_ckey new_character.mind.loaded_from_slot = picked_slot + + for(var/lang in picked_client.prefs.alternate_languages) + var/datum/language/chosen_language = GLOB.all_languages[lang] + if(chosen_language) + if(is_lang_whitelisted(src,chosen_language) || (new_character.species && (chosen_language.name in new_character.species.secondary_langs))) + new_character.add_language(lang) //VOREStation Add End //If desired, apply equipment. diff --git a/code/modules/admin/verbs/randomverbs_vr.dm b/code/modules/admin/verbs/randomverbs_vr.dm index dbf38882d95..d4fa30c8243 100644 --- a/code/modules/admin/verbs/randomverbs_vr.dm +++ b/code/modules/admin/verbs/randomverbs_vr.dm @@ -71,4 +71,29 @@ feedback_add_details("admin_verb","SCAM") //heh - return new_mob \ No newline at end of file + return new_mob + +/client/proc/cmd_admin_z_narrate() // Allows administrators to fluff events a little easier -- TLE + set category = "Special Verbs" + set name = "Z Narrate" + set desc = "Narrates to your Z level." + + if (!holder) + return + + var/msg = input("Message:", text("Enter the text you wish to appear to everyone:")) as text + if(!(msg[1] == "<" && msg[length(msg)] == ">")) //You can use HTML but only if the whole thing is HTML. Tries to prevent admin 'accidents'. + msg = sanitize(msg) + + if (!msg) + return + + var/pos_z = get_z(src.mob) + if (!pos_z) + return + for(var/mob/M in player_list) + if(M.z == pos_z) + to_chat(M, msg) + log_admin("ZNarrate: [key_name(usr)] : [msg]") + message_admins(" ZNarrate: [key_name_admin(usr)] : [msg]
", 1) + feedback_add_details("admin_verb","GLNA") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! From 6bdcc1c239c9b2841c70b4f8e4378733deb64a4b Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 2 Feb 2021 10:00:01 -0500 Subject: [PATCH 13/19] Virgo 3B update --- code/datums/uplink/medical_vr.dm | 56 ++++++++++++++++++++++++++++ code/datums/uplink/tools_vr.dm | 10 +++++ code/modules/food/glass/bottle_vr.dm | 7 ++++ code/modules/planet/virgo3b_vr.dm | 2 +- 4 files changed, 74 insertions(+), 1 deletion(-) diff --git a/code/datums/uplink/medical_vr.dm b/code/datums/uplink/medical_vr.dm index 3ca972cdb9b..5b4a0f31ccc 100644 --- a/code/datums/uplink/medical_vr.dm +++ b/code/datums/uplink/medical_vr.dm @@ -101,6 +101,62 @@ item_cost = 30 path = /obj/item/weapon/storage/pill_bottle/healing_nanites +/datum/uplink_item/item/medical/vermicetol + name = "Vermicetol Bottle" + item_cost = 30 + path = /obj/item/weapon/reagent_containers/glass/bottle/vermicetol + antag_roles = list("ert") + blacklisted = 1 + +/datum/uplink_item/item/medical/dermaline + name = "Dermaline Bottle" + item_cost = 30 + path = /obj/item/weapon/reagent_containers/glass/bottle/dermaline + antag_roles = list("ert") + blacklisted = 1 + +/datum/uplink_item/item/medical/carthatoline + name = "Carthatoline Bottle" + item_cost = 30 + path = /obj/item/weapon/reagent_containers/glass/bottle/carthatoline + antag_roles = list("ert") + blacklisted = 1 + +/datum/uplink_item/item/medical/dexalinp + name = "Dexalin Plus Bottle" + item_cost = 30 + path = /obj/item/weapon/reagent_containers/glass/bottle/dexalinp + antag_roles = list("ert") + blacklisted = 1 + +/datum/uplink_item/item/medical/tramadol + name = "Tramadol Bottle" + item_cost = 30 + path = /obj/item/weapon/reagent_containers/glass/bottle/tramadol + antag_roles = list("ert") + blacklisted = 1 + +/datum/uplink_item/item/medical/arithrazine + name = "Arithrazine Bottle" + item_cost = 50 + path = /obj/item/weapon/reagent_containers/glass/bottle/arithrazine + antag_roles = list("ert") + blacklisted = 1 + +/datum/uplink_item/item/medical/corophizine + name = "Corophizine Bottle" + item_cost = 50 + path = /obj/item/weapon/reagent_containers/glass/bottle/corophizine + antag_roles = list("ert") + blacklisted = 1 + +/datum/uplink_item/item/medical/rezadone + name = "Rezadone Bottle" + item_cost = 50 + path = /obj/item/weapon/reagent_containers/glass/bottle/rezadone + antag_roles = list("ert") + blacklisted = 1 + /datum/uplink_item/item/medical/defib name = "Combat Defibrilator" item_cost = 90 diff --git a/code/datums/uplink/tools_vr.dm b/code/datums/uplink/tools_vr.dm index b0464123ac9..871bfbb5add 100644 --- a/code/datums/uplink/tools_vr.dm +++ b/code/datums/uplink/tools_vr.dm @@ -46,6 +46,16 @@ item_cost = 15 path = /obj/item/modular_computer/tablet/preset/custom_loadout/advanced +/datum/uplink_item/item/tools/metal + name = "Metal (50 sheets)" + item_cost = 15 + path = /obj/fiftyspawner/steel + +/datum/uplink_item/item/tools/glass + name = "Glass (50 sheets)" + item_cost = 15 + path = /obj/fiftyspawner/glass + /datum/uplink_item/item/tools/elitelaptop name = "Laptop (Advanced)" item_cost = 20 diff --git a/code/modules/food/glass/bottle_vr.dm b/code/modules/food/glass/bottle_vr.dm index fc1595b699a..5f918f2f7b9 100644 --- a/code/modules/food/glass/bottle_vr.dm +++ b/code/modules/food/glass/bottle_vr.dm @@ -5,6 +5,13 @@ icon_state = "bottle-4" prefill = list("bicaridine" = 60) +/obj/item/weapon/reagent_containers/glass/bottle/vermicetol + name = "vermicetol bottle" + desc = "A small bottle. Vermicetol is an powerful analgesic medication and can be used to treat blunt trauma." + icon = 'icons/obj/chemical.dmi' + icon_state = "bottle-4" + prefill = list("vermicetol" = 60) + /obj/item/weapon/reagent_containers/glass/bottle/keloderm name = "keloderm bottle" desc = "A small bottle. A fifty-fifty mix of the popular burn medications kelotane and deramline." diff --git a/code/modules/planet/virgo3b_vr.dm b/code/modules/planet/virgo3b_vr.dm index 791841aca71..26d33631a1d 100644 --- a/code/modules/planet/virgo3b_vr.dm +++ b/code/modules/planet/virgo3b_vr.dm @@ -1,7 +1,7 @@ var/datum/planet/virgo3b/planet_virgo3b = null /datum/time/virgo3b - seconds_in_day = 3 HOURS + seconds_in_day = 6 HOURS /datum/planet/virgo3b name = "Virgo-3B" From 90bc60769905145beaaf63db4f687ca825e7f6f6 Mon Sep 17 00:00:00 2001 From: VerySoft Date: Tue, 2 Feb 2021 11:24:17 -0500 Subject: [PATCH 14/19] Moves the tram station and updates the tram's wall type tram is titanium hull now and the tram station expansion is moved north so it doesn't cover the cafe's windows --- maps/tether/submaps/tether_misc.dmm | 4 +- maps/tether/tether-01-surface1.dmm | 112862 ++++++++++++------------- maps/tether/tether-02-surface2.dmm | 698 +- 3 files changed, 56782 insertions(+), 56782 deletions(-) diff --git a/maps/tether/submaps/tether_misc.dmm b/maps/tether/submaps/tether_misc.dmm index 529143989b4..efed63f2c1f 100644 --- a/maps/tether/submaps/tether_misc.dmm +++ b/maps/tether/submaps/tether_misc.dmm @@ -3296,7 +3296,7 @@ /area/space) "Sl" = ( /obj/structure/sign/nanotrasen, -/turf/simulated/wall/rshull, +/turf/simulated/wall/thull, /area/shuttle/escape) "Sm" = ( /turf/simulated/shuttle/wall/alien/blue/hard_corner, @@ -4675,7 +4675,7 @@ name = "\improper CentCom Security Arrivals" }) "XE" = ( -/turf/simulated/wall/rshull, +/turf/simulated/wall/thull, /area/shuttle/escape) "XH" = ( /obj/structure/bed/chair{ diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index e0f664390b2..bda71493738 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -1,56431 +1,56431 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/unsimulated/wall/planetary/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aab" = ( -/obj/structure/sign/warning/bomb_range{ - name = "\improper MINING AREA - WATCH FOR BLASTING" - }, -/turf/unsimulated/wall/planetary/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aac" = ( -/obj/effect/map_effect/portal/master/side_a{ - portal_id = "surfacemine" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aad" = ( -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aae" = ( -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aaf" = ( -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aag" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aah" = ( -/turf/simulated/mineral, -/area/tether/surfacebase/outside/outside1) -"aai" = ( -/obj/machinery/camera/network/outside{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aaj" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aak" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aal" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aam" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aan" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/mentalhealth) -"aao" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/paramed) -"aap" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/paramed) -"aaq" = ( -/turf/simulated/wall, -/area/tether/surfacebase/lowernortheva) -"aar" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized/full{ - id = "psych_office" - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/mentalhealth) -"aas" = ( -/obj/effect/map_helper/airlock/door/ext_door, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "northciv_airlock_outer"; - locked = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/lowernortheva) -"aat" = ( -/obj/machinery/access_button/airlock_exterior{ - master_tag = "northciv_airlock"; - pixel_x = 25; - pixel_y = 8 - }, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "northciv_airlock_outer"; - locked = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/lowernortheva) -"aau" = ( -/obj/machinery/suit_cycler/medical, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aav" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aax" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aay" = ( -/obj/structure/table/rack, -/obj/item/device/gps/medical{ - pixel_y = 3 - }, -/obj/item/device/gps/medical{ - pixel_x = -3 - }, -/obj/item/device/radio{ - pixel_x = 2 - }, -/obj/item/device/radio{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaz" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "northciv_airlock_scrubber" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/lowernortheva) -"aaA" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "northciv_airlock_pump" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/lowernortheva) -"aaB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernortheva) -"aaC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernortheva) -"aaD" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"aaE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"aaF" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaG" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaJ" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/white, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"aaK" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaL" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/device/multitool, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaM" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "northciv_airlock_scrubber" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/lowernortheva) -"aaN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernortheva) -"aaO" = ( -/obj/structure/filingcabinet/chestdrawer{ - name = "Medical Forms" - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"aaP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/embedded_controller/radio/airlock/phoron{ - id_tag = "northciv_airlock"; - pixel_x = 25; - pixel_y = -25 - }, -/obj/machinery/airlock_sensor/phoron{ - id_tag = "northciv_airlock_sensor"; - pixel_x = 59; - pixel_y = 11 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernortheva) -"aaQ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aaR" = ( -/obj/structure/filingcabinet/medical{ - desc = "A large cabinet with hard copy medical records."; - name = "Medical Records" - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"aaS" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aaU" = ( -/turf/simulated/wall, -/area/maintenance/lower/trash_pit) -"aaV" = ( -/obj/structure/table/woodentable, -/obj/structure/plushie/ian{ - dir = 8; - pixel_y = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"aaW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/vacant_site) -"aaX" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaY" = ( -/obj/effect/landmark/start{ - name = "Paramedic" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaZ" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aba" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"abc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"abd" = ( -/obj/structure/table/rack, -/obj/item/weapon/rig/medical/equipped, -/obj/structure/fireaxecabinet{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"abe" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"abf" = ( -/obj/structure/table/woodentable, -/obj/item/toy/plushie/therapy/blue, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"abh" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"abi" = ( -/obj/machinery/hologram/holopad, -/obj/effect/landmark/start{ - name = "Paramedic" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"abj" = ( -/obj/structure/table/woodentable, -/obj/random/plushie, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"abl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"abm" = ( -/turf/simulated/wall, -/area/rnd/hardstorage) -"abn" = ( -/obj/structure/table/rack/steel, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"abo" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"abp" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abq" = ( -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abs" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"abt" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"abu" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"abv" = ( -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"abw" = ( -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"abx" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/security/checkpoint) -"aby" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"abz" = ( -/obj/structure/table/woodentable, -/obj/machinery/light_construct{ - dir = 1 - }, -/obj/item/glass_jar, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"abA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/security/checkpoint) -"abB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"abC" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet/crate, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/drinkbottle, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"abD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"abE" = ( -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"abF" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"abG" = ( -/obj/effect/floor_decal/rust, -/obj/random/cutout, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"abH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"abI" = ( -/obj/structure/closet/crate/plastic, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"abJ" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"abK" = ( -/obj/machinery/door/airlock/glass{ - name = "Looking Glass" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_one) -"abL" = ( -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"abM" = ( -/obj/structure/catwalk, -/obj/random/junk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"abN" = ( -/turf/simulated/wall/r_wall, -/area/rnd/testingroom) -"abO" = ( -/obj/structure/catwalk, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"abP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abQ" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"abR" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"abS" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"abT" = ( -/turf/simulated/wall, -/area/maintenance/lower/mining_eva) -"abU" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_y = 4 - }, -/obj/item/weapon/pen{ - pixel_y = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"abV" = ( -/obj/effect/landmark/start{ - name = "Psychiatrist" - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"abW" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - name = "Research Testing Scrubber"; - use_power = 2 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"abX" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "psych_birdcage" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/mentalhealth) -"abY" = ( -/obj/machinery/door/airlock/medical{ - name = "EMT Bay" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/paramed) -"abZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aca" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"acb" = ( -/turf/simulated/mineral, -/area/rnd/testingroom) -"acc" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/grass, -/area/tether/surfacebase/medical/mentalhealth) -"acd" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit{ - pixel_y = -5 - }, -/obj/item/device/suit_cooling_unit{ - pixel_y = -5 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"ace" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/grass, -/area/tether/surfacebase/medical/mentalhealth) -"acf" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"acg" = ( -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ach" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark/start{ - name = "Paramedic" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aci" = ( -/turf/simulated/mineral, -/area/storage/surface_eva/external) -"acj" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"ack" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - use_power = 1 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"acl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acn" = ( -/obj/structure/table/rack, -/obj/item/device/defib_kit/compact/loaded, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aco" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"acp" = ( -/obj/structure/grille, -/obj/structure/railing, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "suckysucky"; - name = "Scrubber Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"acq" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acr" = ( -/obj/structure/table/marble, -/obj/machinery/door/window{ - dir = 8; - req_one_access = list(25) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"acs" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/medical/first_aid_west) -"act" = ( -/obj/machinery/door/airlock/maintenance/common{ - name = "Tram Maintenance Access" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"acu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"acv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/vending/loadout/clothing, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"acx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"acy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"acz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/vending/loadout, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"acB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/vending/wallmed_airlock{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"acC" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/machinery/button/windowtint{ - id = "psych_office"; - pixel_x = 6; - pixel_y = 10; - range = 12 - }, -/obj/machinery/button/windowtint{ - id = "psych_office_inside"; - pixel_x = 6; - range = 12 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"acD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"acE" = ( -/obj/structure/dispenser{ - phorontanks = 0 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"acF" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"acG" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Birdcage"; - req_one_access = list(64) - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"acH" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"acI" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/tether/surfacebase/medical/mentalhealth) -"acJ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"acK" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/tether/surfacebase/medical/mentalhealth) -"acL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"acM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"acN" = ( -/obj/structure/cable/ender{ - icon_state = "1-2"; - id = "surface-mining" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"acO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acP" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"acQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"acR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acS" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"acT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"acU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"acW" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"acX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"acY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acZ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"ada" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adb" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/paramed) -"adc" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"add" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ade" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"adf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"adh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adl" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/binary/passive_gate/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"adm" = ( -/obj/structure/bed/chair/bay/chair/padded/red/bignest{ - name = "Tweeter's Bed" - }, -/mob/living/simple_mob/animal/passive/bird/azure_tit/tweeter, -/turf/simulated/floor/grass, -/area/tether/surfacebase/medical/mentalhealth) -"adn" = ( -/turf/simulated/wall/r_wall, -/area/rnd/tankstorage) -"ado" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"adp" = ( -/obj/structure/table/rack, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"adq" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/tether/surfacebase/medical/mentalhealth) -"adr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"ads" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/lowernorthhall) -"adt" = ( -/turf/simulated/wall, -/area/maintenance/substation/cargostoresubstation) -"adu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"adw" = ( -/obj/structure/flora/pottedplant/fern, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"adx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"ady" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/access_button{ - command = "cycle_exterior"; - dir = 8; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = 25; - req_access = list(39) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"adz" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"adA" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -8; - pixel_y = -26 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"adB" = ( -/obj/structure/bookcase, -/obj/item/weapon/book/manual/anomaly_spectroscopy, -/obj/item/weapon/book/manual/anomaly_testing, -/obj/item/weapon/book/manual/materials_chemistry_analysis, -/obj/item/weapon/book/manual/resleeving, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"adC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"adD" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"adE" = ( -/obj/structure/bookcase, -/obj/item/weapon/book/manual, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/standard_operating_procedure, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"adF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 8; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = 24; - pixel_y = 25; - req_access = list(39) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"adH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adK" = ( -/turf/simulated/wall, -/area/tether/surfacebase/outside/outside1) -"adL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"adM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"adN" = ( -/obj/machinery/power/apc/high{ - dir = 4; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"adO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adP" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"adQ" = ( -/obj/structure/closet/secure_closet/paramedic, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"adR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"adS" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"adT" = ( -/obj/structure/flora/pottedplant/fern, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"adU" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_medical{ - name = "Mental Health"; - req_one_access = list() - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"adV" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"adW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay recovery room door."; - id = "Psych"; - name = "Exit Button"; - pixel_x = -26; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"adY" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "Psych"; - name = "Mental Health" - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"adZ" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"aea" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access = list(64); - req_one_access = list(5) - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"aeb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics Substation" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - layer = 1; - name = "Atmospherics Lockdown"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aec" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - layer = 1; - name = "Atmospherics Lockdown"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aed" = ( -/obj/machinery/vending/medical{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"aee" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"aef" = ( -/turf/simulated/wall, -/area/tether/surfacebase/lowernorthhall) -"aeg" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/lowernorthhall) -"aeh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aei" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"aej" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - layer = 1; - name = "Atmospherics Lockdown"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aek" = ( -/obj/structure/bed/psych, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"ael" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/clipboard, -/obj/machinery/light, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"aem" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aen" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/wall/r_wall, -/area/medical/virology) -"aeo" = ( -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aep" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aeq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aer" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics"; - req_access = list(24) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - layer = 1; - name = "Atmospherics Lockdown"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aes" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/camera/network/cargo{ - dir = 8 - }, -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aet" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aeu" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics"; - req_access = list(24) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "atmoslockdown"; - layer = 1; - name = "Atmospherics Lockdown"; - opacity = 0; - open_layer = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aev" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/medical{ - name = "EMT Bay" - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aew" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aex" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?"; - icon_state = "frame"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aey" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/tether/surfacebase/north_stairs_one) -"aez" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"aeB" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/tool, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"aeC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aeD" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aeE" = ( -/turf/simulated/wall/r_wall, -/area/medical/virology) -"aeF" = ( -/obj/random/junk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aeG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeH" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like its set to the kek-centeral. I wonder what else is on?"; - icon_state = "frame"; - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aeJ" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 8 - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aeK" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeL" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like it's on MTV. Now you can't blame that demi-cowgirl for working her money maker. I wonder what else is on?"; - icon_state = "frame"; - pixel_y = 32 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aeM" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like it's on the fishing channel. I wonder what else is on?"; - icon_state = "frame"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aeN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aeO" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Secondary Janitorial Closet"; - req_access = list(26) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeQ" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aeR" = ( -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"aeS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aeT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"aeU" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/lowerhall) -"aeV" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aeW" = ( -/turf/simulated/wall, -/area/storage/primary) -"aeX" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeY" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "mentaldoor"; - name = "Mental Health"; - req_access = list(64) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/mentalhealth) -"aeZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"afb" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized/full{ - id = "psych_office_inside" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/mentalhealth) -"afc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"afd" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"afe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"aff" = ( -/turf/simulated/wall, -/area/medical/virologyaccess) -"afg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"afh" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "West Hallway" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/surface_one_hall) -"afi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afm" = ( -/turf/simulated/wall/r_wall, -/area/medical/virologyaccess) -"afn" = ( -/obj/machinery/disease2/diseaseanalyser, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"afo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"afq" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"afr" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/storage/primary) -"afs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aft" = ( -/obj/machinery/camera/network/civilian, -/obj/machinery/lapvend, -/turf/simulated/floor/tiled, -/area/storage/primary) -"afu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"afv" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/storage/primary) -"afw" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/alarm{ - pixel_y = 23 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"afx" = ( -/obj/machinery/computer/diseasesplicer, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"afy" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"afz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"afA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"afB" = ( -/obj/machinery/disease2/incubator, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"afC" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"afD" = ( -/obj/machinery/computer/centrifuge, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"afE" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/tether/surfacebase/lowernorthhall) -"afF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afG" = ( -/obj/structure/bed/chair, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"afH" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/tram) -"afI" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"afL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"afM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"afQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afR" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"afS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afT" = ( -/turf/simulated/floor/tiled, -/area/storage/primary) -"afU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"afV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/storage/primary) -"afW" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/storage/primary) -"afX" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Research Maintenance Access"; - req_access = list(55) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/hardstorage) -"afY" = ( -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"afZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/vending/loadout/overwear, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aga" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/obj/machinery/vending/coffee{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"agb" = ( -/turf/simulated/shuttle/wall/voidcraft/green{ - hard_corner = 1 - }, -/area/tether/elevator) -"agc" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/tether/elevator) -"agd" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "CargoShop Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"age" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"agf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"agg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"agh" = ( -/obj/turbolift_map_holder/tether{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/tether/elevator) -"agi" = ( -/obj/structure/sign/deck/first, -/turf/simulated/shuttle/wall/voidcraft/green{ - hard_corner = 1 - }, -/area/tether/elevator) -"agj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"agk" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"agl" = ( -/obj/machinery/atmospherics/unary/outlet_injector, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"agm" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"agn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"ago" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"agp" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/suspension_gen, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"agq" = ( -/obj/machinery/atmospherics/tvalve/bypass{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/virology) -"agr" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"ags" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/weapon/tank/emergency/oxygen/engi, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"agt" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"agu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agv" = ( -/turf/simulated/wall/r_wall, -/area/rnd/chemistry_lab) -"agw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"agx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"agy" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/rust, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"agz" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agA" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agB" = ( -/obj/machinery/vending/tool{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Xenoarch Storage"; - req_access = list(65) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenoarch_storage) -"agD" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"agE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Research Hard Storage"; - req_access = list(47) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"agF" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"agG" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"agH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"agI" = ( -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/structure/reagent_dispensers/foam, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agK" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agL" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"agM" = ( -/turf/simulated/wall, -/area/tether/surfacebase/surface_one_hall) -"agN" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"agO" = ( -/obj/structure/table/glass, -/obj/machinery/status_display{ - layer = 4; - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"agP" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "gogogo"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"agQ" = ( -/obj/structure/catwalk, -/obj/random/cigarettes, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"agR" = ( -/obj/structure/table/glass, -/obj/item/weapon/tool/screwdriver, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"agS" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"agT" = ( -/obj/structure/catwalk, -/obj/random/junk, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"agU" = ( -/turf/simulated/wall, -/area/storage/surface_eva) -"agV" = ( -/obj/structure/closet/crate, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"agW" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"agX" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agY" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aha" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "gogogo"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahb" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "gogogo"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahc" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "atrium" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_one_hall) -"ahd" = ( -/obj/machinery/door/window/northleft{ - req_access = list(47) - }, -/obj/machinery/door/window/southleft{ - req_access = list(47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "gogogo"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahe" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "gogogo"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahg" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahi" = ( -/obj/structure/table/rack{ - dir = 4 - }, -/obj/random/maintenance/clean, -/obj/item/clothing/mask/gas, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"ahj" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"ahk" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahl" = ( -/turf/simulated/wall, -/area/hallway/lower/first_west) -"ahm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/primary) -"aho" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/primary) -"ahp" = ( -/obj/structure/catwalk, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/clean, -/obj/random/tool, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahq" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahr" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahs" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"aht" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Chemical Research" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahu" = ( -/obj/structure/grille, -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_one_hall) -"ahv" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahw" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahx" = ( -/turf/simulated/wall, -/area/tether/surfacebase/emergency_storage/atrium) -"ahy" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahz" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahA" = ( -/obj/structure/catwalk, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ahC" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"ahE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"ahF" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahI" = ( -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahJ" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahM" = ( -/obj/machinery/atm{ - pixel_y = 31 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahP" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahQ" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahR" = ( -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ahU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahX" = ( -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_one) -"ahY" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahZ" = ( -/obj/structure/sign/directions/cargo{ - dir = 4 - }, -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_one) -"aia" = ( -/obj/structure/sign/directions/evac{ - dir = 4 - }, -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_one) -"aib" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aic" = ( -/obj/machinery/atm{ - pixel_y = 31 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aid" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aie" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "Cargo Shop"; - sortType = "Cargo Shop" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aif" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aig" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 9 - }, -/obj/machinery/smartfridge/secure/virology, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aih" = ( -/obj/machinery/button/remote/blast_door{ - id = "gogogo"; - name = "Test Chamber Blast Seal Control"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aii" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aij" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aik" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/item/weapon/storage/toolbox/electrical, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ail" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/prox_sensor, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/voice, -/obj/item/device/radio/electropack, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aim" = ( -/obj/machinery/button/remote/blast_door{ - id = "suckysucky"; - name = "Scrubber Blast Door-Controller"; - pixel_y = 32 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ain" = ( -/obj/machinery/chem_master{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aio" = ( -/obj/machinery/camera/network/research{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aip" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers, -/obj/item/clothing/glasses/science, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/item/weapon/storage/fancy/vials, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiq" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"air" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ais" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ait" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aiu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiv" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aix" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiy" = ( -/turf/simulated/wall, -/area/storage/surface_eva/external) -"aiz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"aiA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"aiB" = ( -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiC" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"aiD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aiE" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aiF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiG" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/assembly/infra, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiH" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiI" = ( -/obj/structure/table/glass, -/obj/machinery/chemical_dispenser/full{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiJ" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/obj/item/device/reagent_scanner, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiK" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiL" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiM" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aiO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aiP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "West Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/north_stairs_one) -"aiQ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/computer/area_atmos/tag, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiR" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - name = "Research Testing Scrubber" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiS" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aiT" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"aiU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aiW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"aiX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aiY" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aiZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aja" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/tether/surfacebase/surface_one_hall) -"ajb" = ( -/obj/machinery/computer/arcade{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ajc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance/common{ - req_one_access = newlist() - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ajd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aje" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ajf" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - breach_detection = 0; - dir = 8; - pixel_x = 25; - rcon_setting = 3; - report_danger_level = 0 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"ajg" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"ajh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aji" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"ajj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajl" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/sleep/Dorm_7) -"ajm" = ( -/obj/machinery/vending/tool{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ajn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"ajo" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"ajp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ajq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ajr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ajt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aju" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ajv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ajw" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/black/border, -/obj/machinery/atmospherics/binary/pump/high_power/on, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajx" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/obj/machinery/atmospherics/binary/pump/high_power/on, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajy" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/atmospherics/binary/pump/high_power/on, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajz" = ( -/obj/structure/table/woodentable, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"ajA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ajB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ajC" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"ajD" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"ajE" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"ajF" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/railing, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"ajG" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ajH" = ( -/obj/structure/cable/heavyduty, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ajI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ajJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ajK" = ( -/mob/living/simple_mob/animal/passive/gaslamp, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside1) -"ajL" = ( -/turf/simulated/wall, -/area/maintenance/lower/public_garden_maintenence) -"ajM" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"ajN" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "holodeck"; - name = "Holodeck Privacy Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized/full{ - id = "holodeck" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "holodeck" - }, -/turf/simulated/floor/plating, -/area/holodeck_control) -"ajO" = ( -/turf/simulated/wall, -/area/holodeck_control) -"ajP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ajQ" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"ajR" = ( -/obj/effect/floor_decal/rust, -/obj/random/cigarettes, -/obj/random/junk, -/obj/random/junk, -/obj/random/tool, -/obj/effect/landmark/teleplumb_exit, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ajS" = ( -/turf/simulated/wall, -/area/tether/surfacebase/public_garden_one) -"ajT" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"ajU" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"ajV" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "holodeck"; - name = "Holodeck Privacy Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized/full{ - id = "holodeck" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "holodeck" - }, -/turf/simulated/floor/plating, -/area/holodeck_control) -"ajW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/camera/network/research, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ajX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ajY" = ( -/turf/simulated/floor/plating, -/area/tether/surfacebase/public_garden_one) -"ajZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"aka" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"akb" = ( -/obj/structure/grille, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_one) -"akc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"akd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ake" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"akf" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"akg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"akh" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "atrium" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_one) -"aki" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"akj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"akk" = ( -/obj/structure/grille, -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_one) -"akl" = ( -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"akm" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"akn" = ( -/turf/simulated/mineral, -/area/maintenance/lower/public_garden_maintenence) -"ako" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"akp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"akq" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/hole/right, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"akr" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/hole, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"aks" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"akt" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"aku" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"akv" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"akw" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"akx" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"aky" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"akz" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"akA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"akB" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/weaponsrange) -"akC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"akD" = ( -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akG" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/up{ - dir = 4 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"akH" = ( -/obj/machinery/camera/network/outside{ - dir = 9 - }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/holodeck_control) -"akI" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"akJ" = ( -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"akK" = ( -/turf/simulated/wall, -/area/tether/surfacebase/lowernortheva/external) -"akL" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/alphadeck) -"akM" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akN" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akO" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/machinery/camera/network/civilian, -/obj/structure/table/standard, -/obj/random/soap, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/holodeck_control) -"akP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/machinery/computer/timeclock/premade/north, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akR" = ( -/turf/simulated/wall, -/area/tether/surfacebase/public_garden) -"akS" = ( -/obj/structure/catwalk, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/tether/surfacebase/public_garden) -"akT" = ( -/obj/structure/sign/poster, -/turf/simulated/wall, -/area/tether/surfacebase/public_garden) -"akU" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/table/bench/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akV" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"akW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akX" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akY" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"akZ" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"ala" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alb" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alc" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/tether/surfacebase/public_garden_one) -"ald" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"ale" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alh" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden) -"ali" = ( -/obj/structure/table/bench/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alj" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"all" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"aln" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Public Gardens" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/public_garden_one) -"alo" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"als" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden) -"alt" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alu" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"alv" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"aly" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alA" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alC" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alD" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"alE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"alF" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alG" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alH" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"alJ" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alK" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alL" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"alM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alN" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alO" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alR" = ( -/obj/structure/bed/chair/wood, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/testingroom) -"alT" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Testing Room"; - req_access = list(47) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/testingroom) -"alU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/rnd/testingroom) -"alV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access = list(8) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/tankstorage) -"alW" = ( -/obj/structure/sign/warning/caution, -/turf/simulated/wall/r_wall, -/area/rnd/tankstorage) -"alX" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable{ - icon_state = "16-0" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"alY" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "rnd_can_store" - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/tankstorage) -"alZ" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/tankstorage) -"ama" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/computer/area_atmos/tag{ - dir = 4; - scrub_id = "rnd_can_store" - }, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled, -/area/rnd/tankstorage) -"amb" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/tankstorage) -"amc" = ( -/obj/structure/sink{ - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"amd" = ( -/obj/structure/sign/warning/nosmoking_2, -/turf/simulated/wall/r_wall, -/area/rnd/tankstorage) -"ame" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"amf" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"amg" = ( -/obj/effect/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"amh" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"ami" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/coffee{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/public_garden) -"amj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amk" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/structure/symbol/sa{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"aml" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/requests_console{ - department = "Tool Storage"; - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amm" = ( -/obj/machinery/hologram/holopad, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amn" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amo" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amq" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"amr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"ams" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amt" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amu" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amv" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amw" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"amx" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amy" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amz" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amA" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 1 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"amB" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 1 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"amC" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/snack{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/public_garden) -"amD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amE" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amF" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amG" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amH" = ( -/obj/item/weapon/stool, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amI" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amJ" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amK" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amL" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amM" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"amN" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amO" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amP" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"amQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"amR" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amU" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amV" = ( -/obj/machinery/vending/assist{ - dir = 8 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amW" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amX" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amZ" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/storage/primary) -"ana" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"anb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"anc" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"and" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/tankstorage) -"ane" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"anf" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/cargo, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ang" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"anh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"ani" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = -24 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"anj" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"ank" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"anl" = ( -/obj/machinery/disposal, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"anm" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/sleep/Dorm_5) -"ann" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/sleep/Dorm_3) -"ano" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/outside/outside1) -"anp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"anq" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ - pixel_y = 13 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = 9 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = -7; - pixel_y = -7 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = -10; - pixel_y = 5 - }, -/obj/item/trash/raisins{ - desc = "This trash looks like it's had one too many."; - name = "Wasted waste" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"anr" = ( -/obj/structure/catwalk, -/obj/random/cigarettes, -/obj/random/junk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ans" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Public Gardens" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/hallway/lower/first_west) -"ant" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/hallway/lower/first_west) -"anu" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/primary) -"anv" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"anw" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"anx" = ( -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"any" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anA" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"anE" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/sleep/Dorm_1) -"anF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"anG" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - req_one_access = list(47,24) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/rnd/hallway) -"anH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/bed/chair/office/dark, -/obj/structure/barricade/cutout/ntsec, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"anI" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"anJ" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"anK" = ( -/obj/structure/symbol/lo, -/turf/simulated/wall{ - can_open = 1 - }, -/area/maintenance/lower/atmos) -"anL" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"anM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"anN" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anO" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anQ" = ( -/obj/machinery/computer/guestpass{ - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"anR" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"anS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/tether, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"anT" = ( -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"anU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - name = "Primary Tool Storage"; - sortType = "Primary Tool Storage" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"anV" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"anW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"anX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"anY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"anZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aoa" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/int{ - name = "Emergency Storage" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/surface_one_hall) -"aob" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aoc" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aod" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aoe" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "civ_airlock_scrubber" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/surface_eva/external) -"aof" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "civ_airlock_scrubber" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/surface_eva/external) -"aog" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aoh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aoi" = ( -/obj/structure/flora/pottedplant, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"aoj" = ( -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"aok" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aol" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/symbol/es{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aom" = ( -/obj/structure/closet/firecloset/full/double, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aon" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aoo" = ( -/obj/structure/table/standard, -/obj/item/device/t_scanner, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aop" = ( -/obj/structure/catwalk, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/clean, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"aoq" = ( -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aor" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/storage/surface_eva/external) -"aos" = ( -/obj/structure/railing, -/obj/structure/grille, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "civ_airlock_pump" - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled, -/area/storage/surface_eva/external) -"aot" = ( -/obj/structure/railing, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/grille, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "civ_airlock_pump" - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled, -/area/storage/surface_eva/external) -"aou" = ( -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/civilian, -/obj/structure/sign/nosmoking_2{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"aov" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central6, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/vending/wallmed_airlock{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"aow" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aox" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aoy" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/door/window/southleft, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/structure/sign/nosmoking_2{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aoz" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/door/window/southright, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/weapon/tank/emergency/oxygen/engi, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aoA" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/weapon/shovel, -/obj/item/weapon/shovel, -/obj/item/weapon/soap, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aoB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"aoC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aoD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aoE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/lower/first_west) -"aoF" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/hallway/lower/first_west) -"aoG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/hallway/lower/first_west) -"aoH" = ( -/turf/simulated/wall, -/area/storage/art) -"aoI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/art) -"aoJ" = ( -/obj/machinery/door/airlock/glass{ - name = "Art Storage" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/art) -"aoK" = ( -/obj/structure/sign/directions/evac{ - name = "\improper Secondary Evacuation Route" - }, -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_one) -"aoL" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/north_stairs_one) -"aoM" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aoN" = ( -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - dir = 1; - pixel_y = 3 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = -4 - }, -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_y = -10 - }, -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_one) -"aoO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aoP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aoQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aoR" = ( -/obj/machinery/light/flamp/noshade, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"aoS" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"aoT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aoU" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aoV" = ( -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/storage/surface_eva/external) -"aoW" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ_airlock_outer"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/surface_eva/external) -"aoX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva/external) -"aoY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/storage/surface_eva/external) -"aoZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ_airlock_inner"; - locked = 1 - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "civ_airlock"; - pixel_x = 8; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/surface_eva/external) -"apa" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/storage/surface_eva) -"apd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"ape" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/storage/surface_eva) -"aph" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"api" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"apj" = ( -/turf/simulated/mineral, -/area/vacant/vacant_site) -"apk" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/obj/random/drinkbottle, -/obj/machinery/light_switch{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"apl" = ( -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"apm" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/binary/passive_gate/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"apn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"apo" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"app" = ( -/obj/structure/table/rack, -/obj/random/cigarettes, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"apq" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/fancy/crayons, -/obj/item/weapon/storage/fancy/crayons, -/turf/simulated/floor/tiled, -/area/storage/art) -"apr" = ( -/turf/simulated/floor/tiled, -/area/storage/art) -"aps" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"apt" = ( -/obj/structure/table/standard, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/turf/simulated/floor/tiled, -/area/storage/art) -"apu" = ( -/turf/simulated/wall, -/area/maintenance/lower/xenoflora) -"apv" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"apw" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"apx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"apy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"apz" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"apA" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"apB" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"apC" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"apD" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"apE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"apF" = ( -/turf/simulated/wall, -/area/maintenance/lower/vacant_site) -"apG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/vacant_site) -"apH" = ( -/obj/machinery/access_button/airlock_exterior{ - master_tag = "civ_airlock"; - pixel_x = -8; - pixel_y = -25 - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ_airlock_outer"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/surface_eva/external) -"apI" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva/external) -"apJ" = ( -/obj/machinery/embedded_controller/radio/airlock/phoron{ - dir = 8; - id_tag = "civ_airlock"; - pixel_x = 25; - pixel_y = -30 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/airlock_sensor/phoron{ - id_tag = "civ_airlock_sensor"; - pixel_x = 25; - pixel_y = -40 - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/tiled, -/area/storage/surface_eva/external) -"apK" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ_airlock_inner"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/surface_eva/external) -"apL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apN" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Surface EVA" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/turf/simulated/floor/tiled/monofloor, -/area/storage/surface_eva) -"apO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apQ" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apS" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Surface EVA" - }, -/turf/simulated/floor/tiled/monofloor, -/area/storage/surface_eva) -"apT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"apU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"apV" = ( -/obj/effect/floor_decal/rust, -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"apW" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"apX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"apY" = ( -/obj/structure/table/standard, -/obj/item/device/camera_film{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/device/camera_film{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"apZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/storage/art) -"aqa" = ( -/obj/structure/table/standard, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"aqb" = ( -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"aqc" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aqd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aqe" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"aqf" = ( -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"aqg" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"aqh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aqi" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/vacant_site) -"aqj" = ( -/obj/structure/ladder/up, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"aqk" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"aql" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"aqm" = ( -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/storage/surface_eva/external) -"aqn" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "civ_airlock_scrubber" - }, -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/surface_eva/external) -"aqo" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "civ_airlock_scrubber" - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/surface_eva/external) -"aqp" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/structure/curtain/open/shower, -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/monotile, -/area/storage/surface_eva) -"aqq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"aqr" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aqs" = ( -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = -3 - }, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/status_display{ - layer = 4; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aqt" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/rack{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/northleft, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aqu" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/rack{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/northright, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/weapon/tank/emergency/oxygen/engi, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aqv" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/item/weapon/tool/crowbar/red, -/obj/item/weapon/tool/crowbar/red, -/obj/item/weapon/tool/crowbar/red, -/obj/item/weapon/tool/crowbar/red, -/obj/item/weapon/tool/crowbar/red, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/obj/item/clothing/glasses/goggles, -/obj/item/clothing/glasses/goggles, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aqw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aqx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aqy" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"aqz" = ( -/obj/structure/disposalpipe/segment, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"aqA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/cap/visible/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"aqB" = ( -/obj/structure/table/standard, -/obj/item/device/camera, -/obj/item/device/camera{ - pixel_x = 3; - pixel_y = -4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"aqC" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/storage/art) -"aqD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"aqE" = ( -/obj/structure/table/standard, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/hand_labeler, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"aqF" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor, -/area/tether/surfacebase/north_stairs_one) -"aqG" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aqH" = ( -/obj/machinery/light/small, -/obj/structure/mopbucket, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aqI" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_one_hall) -"aqJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aqK" = ( -/mob/living/simple_mob/animal/passive/fish/koi/poisonous, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"aqL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aqM" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_one_hall) -"aqN" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/vacant_site) -"aqO" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"aqP" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"aqQ" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"aqR" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aqS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm2"; - name = "Room 2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_2) -"aqT" = ( -/turf/simulated/wall/r_wall, -/area/storage/surface_eva/external) -"aqU" = ( -/turf/simulated/wall/r_wall, -/area/storage/surface_eva) -"aqV" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/first_aid_west) -"aqW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aqX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aqY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/tether{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aqZ" = ( -/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"ara" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"arb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"arc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"ard" = ( -/obj/structure/table/standard, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/device/taperecorder, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"are" = ( -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"arf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"arg" = ( -/obj/structure/railing, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"arh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"ari" = ( -/turf/simulated/floor, -/area/maintenance/lower/xenoflora) -"arj" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"ark" = ( -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"arl" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"arm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/vending/loadout/accessory, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"arn" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/device/radio/emergency, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"aro" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arp" = ( -/obj/machinery/sleep_console, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arq" = ( -/obj/machinery/vending/wallmed1/public{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arr" = ( -/obj/structure/sign/redcross{ - name = "FirstAid" - }, -/turf/simulated/wall, -/area/tether/surfacebase/medical/first_aid_west) -"ars" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"art" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box, -/obj/item/weapon/storage/box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/weapon/tape_roll{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/tape_roll, -/turf/simulated/floor/tiled, -/area/storage/art) -"aru" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/blue{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/weapon/pen/red{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/storage/art) -"arv" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"arw" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"arx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/tether{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ary" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"arz" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"arA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"arB" = ( -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"arC" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"arD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/vending/loadout/gadget, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"arE" = ( -/obj/structure/table/rack, -/obj/item/bodybag/cryobag, -/obj/item/weapon/tool/crowbar, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/item/device/defib_kit/loaded, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arG" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arH" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "First-Aid Station"; - req_one_access = newlist() - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/medical/first_aid_west) -"arI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"arJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"arK" = ( -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"arL" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"arM" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"arN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/computer/guestpass{ - dir = 4; - pixel_x = -28 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"arO" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"arP" = ( -/obj/structure/table/glass, -/obj/item/device/radio/phone/medbay{ - name = "Medical Emergency Phone" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arQ" = ( -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arR" = ( -/obj/structure/table/glass, -/obj/random/medical/lite, -/obj/item/device/radio/intercom/department/medbay, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 28 - }, -/obj/structure/bed/roller, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/first_aid_west) -"arU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"arV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"arW" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/hallway/lower/first_west) -"arX" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/up{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"arY" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"arZ" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"asa" = ( -/obj/structure/sign/directions/evac, -/turf/simulated/wall, -/area/tether/surfacebase/surface_one_hall) -"asb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"asc" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"asd" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"ase" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"asf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"asg" = ( -/obj/structure/sign/directions/evac, -/turf/simulated/wall, -/area/crew_quarters/locker) -"ash" = ( -/turf/simulated/wall, -/area/crew_quarters/locker) -"asi" = ( -/obj/machinery/door/airlock/maintenance/common{ - name = "Locker Room Maintenance" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/locker) -"asj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ask" = ( -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"asl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"asm" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/turf/simulated/floor/tiled/monofloor, -/area/hallway/lower/first_west) -"asn" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/obj/random/cutout, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"aso" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"asp" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"asq" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"asr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ass" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ast" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/clothing/shoes/black, -/turf/simulated/floor/holofloor/tiled/dark, -/area/crew_quarters/locker) -"asu" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/clothing/shoes/black, -/turf/simulated/floor/holofloor/tiled/dark, -/area/crew_quarters/locker) -"asv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"asw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"asx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"asy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/structure/undies_wardrobe, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"asz" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenoarch_storage) -"asA" = ( -/obj/item/weapon/storage/excavation, -/obj/item/weapon/pickaxe, -/obj/item/weapon/tool/wrench, -/obj/item/device/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"asB" = ( -/obj/item/weapon/storage/excavation, -/obj/item/weapon/pickaxe, -/obj/item/weapon/tool/wrench, -/obj/item/device/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"asC" = ( -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"asD" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"asE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"asF" = ( -/obj/structure/closet/crate, -/obj/random/contraband, -/obj/random/maintenance/research, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"asG" = ( -/obj/effect/map_effect/portal/master/side_a{ - dir = 1; - name = "to_wilderness"; - portal_id = "wilderness_step" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"asH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"asI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"asJ" = ( -/obj/structure/catwalk, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"asK" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"asL" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"asM" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/surface_one_hall) -"asN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"asO" = ( -/obj/machinery/light/small, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"asP" = ( -/obj/effect/floor_decal/rust, -/obj/effect/map_effect/portal/master/side_a{ - dir = 4; - name = "to_solars"; - portal_id = "solarstep" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"asQ" = ( -/obj/effect/floor_decal/rust, -/obj/effect/map_effect/portal/line/side_a{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"asR" = ( -/obj/effect/map_effect/portal/line/side_a{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"asS" = ( -/obj/effect/map_effect/portal/line/side_a{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"asT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"asU" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"asV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"asW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"asX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"asY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"asZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ata" = ( -/obj/structure/closet/crate, -/obj/random/action_figure, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"atb" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet/crate, -/obj/random/maintenance/research, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/obj/item/weapon/pickaxe, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"atc" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atd" = ( -/obj/machinery/door/airlock{ - id_tag = "lg_1"; - name = "Looking Glass" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_one) -"ate" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"atf" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"atg" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"ath" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - name = "\improper Secondary Evacuation Route" - }, -/turf/simulated/wall, -/area/maintenance/lower/xenoflora) -"ati" = ( -/obj/structure/sign/directions/evac{ - name = "\improper Secondary Evacuation Route" - }, -/turf/simulated/wall, -/area/maintenance/lower/xenoflora) -"atj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"atk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"atl" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"atm" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"atn" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ato" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atp" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atq" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atr" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/random/soap, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"ats" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"att" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/recharger, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atu" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/random/maintenance/clean, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atx" = ( -/turf/simulated/wall, -/area/tether/surfacebase/tram) -"aty" = ( -/obj/structure/sign/warning{ - name = "\improper STAND AWAY FROM TRACK EDGE" - }, -/turf/simulated/wall, -/area/tether/surfacebase/tram) -"atz" = ( -/obj/machinery/door/blast/regular, -/turf/simulated/wall, -/area/tether/surfacebase/tram) -"atA" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"atB" = ( -/turf/simulated/floor/maglev, -/area/tether/surfacebase/tram) -"atC" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"atD" = ( -/obj/structure/closet/excavation, -/obj/item/weapon/melee/umbrella/random, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"atE" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"atF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"atG" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/simulated/wall, -/area/maintenance/substation/civ_west) -"atH" = ( -/turf/simulated/wall, -/area/maintenance/substation/civ_west) -"atI" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atJ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atK" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"atL" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"atM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"atN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atO" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atP" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atQ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atW" = ( -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"atX" = ( -/obj/structure/bed/chair, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"atY" = ( -/obj/structure/bed/chair, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"atZ" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aua" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"aub" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/tram) -"auc" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"aud" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"aue" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tether/surfacebase/tram; - base_turf = /turf/simulated/floor/tiled/techfloor/grid; - docking_controller = null; - landmark_tag = "escape_station"; - name = "Tether Surface Base" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"auf" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"aug" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"auh" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/item/weapon/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"aui" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"auj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"auk" = ( -/obj/machinery/door/airlock/engineering{ - name = "Civilian West Substation"; - req_one_access = list(11) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/civ_west) -"aul" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Civ West Subgrid"; - name_tag = "Civ West Subgrid" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civ_west) -"aum" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Civ West"; - output_attempt = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civ_west) -"aun" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Civ West Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civ_west) -"auo" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"aup" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common{ - name = "Mining Maintenance Access" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"auq" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"aur" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"aus" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aut" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"auu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/computer/guestpass{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"auv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/structure/closet/wardrobe/mixed, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"auw" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/machinery/computer/timeclock/premade/south, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"aux" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/structure/closet/wardrobe/suit, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"auy" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/machinery/light, -/obj/item/clothing/shoes/black, -/turf/simulated/floor/holofloor/tiled/dark, -/area/crew_quarters/locker) -"auz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"auA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auB" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auC" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auD" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"auE" = ( -/turf/simulated/wall, -/area/rnd/xenoarch_storage) -"auF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"auG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"auH" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civ_west) -"auI" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civ_west) -"auJ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civ_west) -"auK" = ( -/turf/simulated/wall, -/area/maintenance/lower/solars) -"auL" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"auM" = ( -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"auN" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"auO" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"auP" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"auQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"auR" = ( -/turf/simulated/wall, -/area/security/checkpoint) -"auS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auU" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auW" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "rnd_s_airlock_scrubber" - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/external) -"auY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"auZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ava" = ( -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Research Division Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/lower/first_west) -"avb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"avc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/camera/network/tether{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"avd" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/simulated/wall, -/area/maintenance/lower/solars) -"ave" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Civilian West Substation"; - req_one_access = list(11) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/engi{ - id_tag = "elevescaper"; - name = "Elevator Maintenance" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"avj" = ( -/obj/machinery/door/airlock/maintenance/common{ - name = "Solars Maintenance Access" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"avk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avl" = ( -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/tether{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"avn" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"avo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"avp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - id_tag = null; - layer = 2.8; - name = "Security Checkpoint"; - req_access = list(1) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_x = 10; - pixel_y = 36 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/security, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/bookcase, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/security_space_law, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"avB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"avC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"avD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"avE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"avF" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"avG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"avH" = ( -/obj/structure/sign/department/anomaly, -/turf/simulated/wall, -/area/hallway/lower/first_west) -"avI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"avJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"avK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/railing, -/obj/structure/table/rack, -/obj/random/maintenance/medical, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance/medical, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avO" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"avP" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avQ" = ( -/obj/structure/reagent_dispensers/virusfood{ - density = 0; - pixel_y = 62 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avT" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/lower/xenoflora) -"avU" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/surface_one_hall) -"avV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"avW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"avX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"avY" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/green, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"avZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/computer/security{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awa" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/red, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/filingcabinet/security{ - name = "Security Records" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awc" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awd" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awe" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"awj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"awl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"awm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/mauve/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"awn" = ( -/turf/simulated/wall, -/area/rnd/hallway) -"awo" = ( -/obj/machinery/vending/snack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/lower/first_west) -"awp" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/cola{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/lower/first_west) -"awq" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/fitness{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/lower/first_west) -"awr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aws" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"awt" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"awu" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"awv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"aww" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/paleblue/bordercorner2, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/camera/network/medbay{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awy" = ( -/obj/structure/closet/secure_closet/paramedic, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"awz" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awA" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "elevescaper"; - name = "elevator escape button"; - pixel_y = 32 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"awC" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awD" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "16-0" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/disposalpipe/up, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"awE" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awF" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awG" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"awI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"awJ" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"awK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/camera/network/tether{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"awL" = ( -/obj/structure/sign/nanotrasen, -/turf/simulated/wall, -/area/security/checkpoint) -"awM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/brigdoor/northright, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/monotile, -/area/security/checkpoint) -"awN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/checkpoint) -"awO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/table/glass, -/obj/item/weapon/folder/red, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awR" = ( -/obj/machinery/vending/snack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"awS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"awT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"awU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"awV" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - dir = 8; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = 24; - pixel_y = 25; - req_access = list(39) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awX" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/medical{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Virology Exterior Airlock"; - req_access = list(39) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "virologyquar"; - name = "Virology Emergency Quarantine Blast Doors"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"awY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"axa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"axb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/medical{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "virology_airlock_interior"; - locked = 1; - name = "Virology Interior Airlock"; - req_access = list(39) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"axc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 8; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = 25; - req_access = list(39) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -38; - pixel_y = -30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"axd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"axe" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Elevator Maintenance" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"axf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"axg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axh" = ( -/obj/machinery/camera/network/northern_star, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"axk" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axl" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/power/apc/high{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axm" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axn" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/camera/network/northern_star{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axo" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/light, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axp" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axq" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axr" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axs" = ( -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/security/checkpoint) -"axt" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/security/checkpoint) -"axu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"axv" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"axw" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/weapon/storage/box/donut, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"axx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/structure/table/glass, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"axy" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/tram, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"axz" = ( -/obj/machinery/vending/cola{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"axA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"axB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"axC" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"axD" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"axE" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"axF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/disease2/isolator, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"axG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"axH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"axI" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"axJ" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/green, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"axK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"axL" = ( -/obj/structure/sign/nosmoking_1, -/turf/simulated/wall, -/area/tether/surfacebase/medical/lowerhall) -"axM" = ( -/obj/machinery/vending/coffee{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"axN" = ( -/obj/machinery/vending/fitness{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"axO" = ( -/obj/machinery/vending/snack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"axP" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/centralstairwell) -"axQ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"axR" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"axS" = ( -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"axT" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axU" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aya" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayb" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayd" = ( -/obj/machinery/shower{ - dir = 4; - pixel_x = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/curtain/open/shower/medical, -/turf/simulated/floor/tiled/steel, -/area/medical/virologyaccess) -"aye" = ( -/obj/structure/table/standard, -/obj/random/medical, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"ayf" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"ayg" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 4; - id_tag = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = -28; - pixel_y = -6; - tag_exterior_door = "virology_airlock_exterior"; - tag_interior_door = "virology_airlock_interior" - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - dir = 4; - id = "virologyquar"; - name = "Virology Emergency Lockdown Control"; - pixel_x = -28; - pixel_y = 6; - req_access = list(5) - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayh" = ( -/turf/simulated/wall, -/area/crew_quarters/locker/laundry_arrival) -"ayi" = ( -/obj/structure/sign/directions/evac{ - dir = 4 - }, -/turf/simulated/wall, -/area/crew_quarters/locker/laundry_arrival) -"ayj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayk" = ( -/obj/structure/table/glass, -/obj/item/device/radio{ - anchored = 1; - canhear_range = 7; - frequency = 1487; - icon = 'icons/obj/items.dmi'; - icon_state = "red_phone"; - name = "Virology Emergency Phone"; - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/item/device/antibody_scanner, -/obj/item/device/antibody_scanner{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aym" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/industrial/loading{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/security/checkpoint) -"ayn" = ( -/obj/structure/sign/directions/evac{ - dir = 4 - }, -/turf/simulated/wall, -/area/security/checkpoint) -"ayo" = ( -/obj/structure/grille, -/obj/structure/railing, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"ayp" = ( -/obj/structure/sign/warning/nosmoking_1, -/turf/simulated/wall, -/area/tether/surfacebase/tram) -"ayq" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"ayr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ays" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ayt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayw" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Virology Laboratory"; - req_access = list(39) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayA" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/green, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayB" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/tagger{ - dir = 2; - name = "package tagger - Void"; - sort_tag = "Void" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"ayC" = ( -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"ayD" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"ayE" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayG" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayH" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayK" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayM" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/monkeycubes, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayN" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayQ" = ( -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/machinery/vending/fitness, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/locker/laundry_arrival) -"ayR" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/locker/laundry_arrival) -"ayS" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/locker/laundry_arrival) -"ayT" = ( -/obj/machinery/camera/network/civilian, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/vending/nifsoft_shop, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/locker/laundry_arrival) -"ayU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"ayV" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/laundry_basket, -/obj/item/weapon/tape_roll, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"ayW" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"ayX" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayY" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"ayZ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"aza" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"azb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"azc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aze" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azm" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/tram) -"azn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/landmark/tram, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"azo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/landmark/tram, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"azp" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/cryopod/robot/door/tram, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/tram) -"azq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"azs" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/lower/solars) -"azt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"azu" = ( -/obj/item/device/radio{ - pixel_x = -4 - }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Virology. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Virology Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/hand_labeler, -/obj/structure/table/glass, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azv" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/fancy/vials, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/lime/border, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/lime/bordercorner2, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azw" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/lockbox/vials, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/storage/secure/safe{ - pixel_y = -28 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azx" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/storage/box/syringes{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/lime/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azA" = ( -/obj/machinery/vending/snack{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"azB" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/nanotrasen, -/obj/item/weapon/storage/box/cups, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"azC" = ( -/obj/structure/reagent_dispensers/water_cooler/full{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"azD" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"azE" = ( -/obj/structure/railing, -/obj/machinery/camera/network/medbay{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"azF" = ( -/obj/structure/stairs/east, -/obj/structure/railing, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"azG" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'CRUSH WARNING'."; - name = "\improper CRUSH WARNING"; - pixel_y = -32 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"azH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/medical/virology) -"azI" = ( -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Virology Isolation Room One"; - req_one_access = list(39) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azJ" = ( -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Virology Isolation Room Two"; - req_one_access = list(39) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azK" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"azL" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azM" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azN" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azO" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azP" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azQ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azR" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azS" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azT" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"azU" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'CRUSH WARNING'."; - name = "\improper CRUSH WARNING"; - pixel_y = -32 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"azV" = ( -/turf/simulated/wall, -/area/medical/virology) -"azW" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azZ" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aAa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAb" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"aAd" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/light, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"aAe" = ( -/obj/structure/bed/padded, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aAf" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/crew_quarters/locker/laundry_arrival) -"aAg" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aAh" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aAi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/medical{ - name = "Medical Maintenance Access"; - req_access = list(5) - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"aAj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Science Maintenance" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aAk" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aAl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aAm" = ( -/obj/random/junk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAo" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAp" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAq" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAr" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAs" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aAt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aAv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Science Maintenance" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aAy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aAz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAA" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAB" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "northciv_airlock_scrubber" - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/lowernortheva) -"aAC" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/green, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"aAD" = ( -/turf/simulated/wall, -/area/maintenance/lowmedbaymaint) -"aAE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAG" = ( -/turf/simulated/mineral, -/area/maintenance/lowmedbaymaint) -"aAH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAI" = ( -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAJ" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "northciv_airlock_scrubber" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/lowernortheva) -"aAK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAL" = ( -/obj/effect/floor_decal/rust, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAM" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"aAN" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aAO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aAP" = ( -/obj/structure/sign/directions/evac{ - name = "\improper Secondary Evacuation Route" - }, -/turf/simulated/wall, -/area/tether/surfacebase/surface_one_hall) -"aAQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/obj/machinery/door/airlock/glass_external/public{ - name = "Evacuation Route" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/surface_one_hall) -"aAR" = ( -/obj/structure/sign/directions/evac{ - dir = 4 - }, -/turf/simulated/wall, -/area/tether/surfacebase/surface_one_hall) -"aAS" = ( -/obj/structure/closet/crate, -/obj/item/weapon/handcuffs/fuzzy, -/obj/random/maintenance/security, -/obj/random/contraband, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_one_hall) -"aAT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAU" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAV" = ( -/obj/structure/railing, -/obj/structure/table/rack, -/obj/item/clothing/suit/suspenders, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/lowmedbaymaint) -"aAX" = ( -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAY" = ( -/obj/structure/railing, -/obj/structure/closet/crate, -/obj/item/device/camera, -/obj/item/device/tape/random, -/obj/item/device/taperecorder/empty, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAZ" = ( -/obj/structure/railing, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBa" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBc" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/closet/crate, -/obj/random/cigarettes, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBd" = ( -/obj/random/trash_pile, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBe" = ( -/obj/structure/railing, -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/weapon/tank/emergency, -/obj/item/weapon/tank/emergency, -/obj/item/weapon/tank/emergency, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/visible/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aBi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aBj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBk" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"aBl" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBn" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"aBo" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aBp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aBq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aBr" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBs" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"aBt" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBu" = ( -/obj/structure/cable/heavyduty{ - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aBv" = ( -/turf/simulated/wall, -/area/rnd/miscellaneous_lab) -"aBw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aBx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBy" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBz" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -13; - pixel_y = -30 - }, -/obj/structure/cable, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBA" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBB" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBC" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBE" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBF" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBG" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBH" = ( -/obj/effect/floor_decal/rust, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBI" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/weapon/tank/oxygen/red, -/obj/item/clothing/mask/gas/wwii, -/obj/item/clothing/head/hardhat/red, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBJ" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/lower/research) -"aBK" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aBN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBO" = ( -/turf/simulated/wall, -/area/maintenance/lower/research) -"aBP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBQ" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/crew_quarters/locker/laundry_arrival) -"aBS" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/locker/laundry_arrival) -"aBT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/locker/laundry_arrival) -"aBU" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aBV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aBW" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_one_hall) -"aBZ" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/surface_one_hall) -"aCa" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aCb" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aCc" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aCd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/computer/guestpass{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aCh" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCi" = ( -/obj/effect/landmark{ - name = "maint_pred" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCj" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aCk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aCl" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aCm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCp" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common{ - name = "Mining Maintenance Access" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/lowernorthhall) -"aCr" = ( -/turf/simulated/wall, -/area/tether/surfacebase/cargostore/warehouse) -"aCs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCt" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCu" = ( -/obj/structure/railing, -/obj/structure/closet/crate, -/obj/item/clothing/head/that, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCv" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCx" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Atmospherics Subgrid"; - name_tag = "Atmospherics Subgrid" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aCy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCA" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCB" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aCD" = ( -/obj/machinery/recharge_station, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aCE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aCF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aCG" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aCH" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aCI" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aCJ" = ( -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"aCK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aCL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/mining, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/cargostore/warehouse) -"aCM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aCN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aCO" = ( -/turf/simulated/wall, -/area/crew_quarters/visitor_dining) -"aCP" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aCQ" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aCR" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aCS" = ( -/obj/structure/flora/pottedplant, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aCT" = ( -/obj/machinery/vending/fitness{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aCU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aCV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCW" = ( -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aCX" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCY" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCZ" = ( -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aDa" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 10; - id = "gloriouscargopipeline" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDb" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "gloriouscargopipeline" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDe" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDf" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDg" = ( -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDi" = ( -/turf/simulated/wall, -/area/tether/surfacebase/emergency_storage/rnd) -"aDj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/catwalk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aDk" = ( -/obj/item/weapon/bone/skull/unathi, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aDl" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aDm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aDn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aDo" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aDp" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aDq" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aDr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDs" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDt" = ( -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDu" = ( -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aDv" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aDw" = ( -/obj/machinery/vending/coffee{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aDx" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aDy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aDB" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDC" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDD" = ( -/obj/structure/table/rack, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDE" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aDG" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aDH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aDI" = ( -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aDJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/vending/cola{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/monotile, -/area/rnd/hallway) -"aDL" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDM" = ( -/obj/structure/ladder/up, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aDN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDO" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aDP" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aDQ" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aDR" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aDS" = ( -/obj/machinery/door/airlock/maintenance/common{ - name = "Laundry Maintenance Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/locker/laundry_arrival) -"aDT" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/tether/surfacebase/surface_one_hall) -"aDU" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "gloriouscargopipeline" - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "gloriouscargopipeline"; - name = "Mining Ops conveyor switch"; - pixel_x = -5; - pixel_y = -3; - req_access = list(48); - req_one_access = list(48) - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDX" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aDY" = ( -/obj/machinery/door/window{ - dir = 8; - req_one_access = list(25) - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aDZ" = ( -/obj/machinery/light_switch{ - name = "light switch "; - pixel_x = 10; - pixel_y = 36 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "cafe"; - name = "Cafe Shutters"; - pixel_x = -10; - pixel_y = 36; - req_one_access = list(25) - }, -/obj/structure/sink{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aEa" = ( -/obj/structure/table/marble, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/reagent_containers/food/condiment/small/sugar, -/obj/machinery/floor_light/prebuilt{ - on = 1 - }, -/obj/item/weapon/reagent_containers/glass/rag, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aEb" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aEc" = ( -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aEd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEe" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aEf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEi" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/warning/moving_parts{ - desc = "A warning sign for moving parts. This one states 'Put your gathered ore here for processing!' on it."; - name = "To Mining Operations Processing"; - pixel_x = -32 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEm" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aEn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/vending/coffee{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/monotile, -/area/rnd/hallway) -"aEo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aEq" = ( -/obj/machinery/door/airlock/maintenance/int{ - name = "Emergency Storage" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/hallway) -"aEr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aEs" = ( -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aEt" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aEu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aEv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aEw" = ( -/obj/effect/floor_decal/rust, -/obj/structure/railing, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aEx" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aEy" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aEz" = ( -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aEA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aEB" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aEC" = ( -/obj/structure/table/rack, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aED" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aEE" = ( -/obj/effect/landmark{ - name = "maint_pred" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aEF" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - id_tag = null; - name = "Construction Site" - }, -/turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/surface_one_hall) -"aEG" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aEI" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/crew_quarters/visitor_dining) -"aEJ" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aEK" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aEL" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aEM" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aEN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aEO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aEP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aEQ" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall, -/area/maintenance/lower/solars) -"aER" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aES" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aET" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aEU" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEW" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEX" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aEY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aEZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/camera/network/cargo, -/obj/structure/bed/chair, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/flora/pottedplant/stoutbush, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFc" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/metal{ - name = "Shop Warehouse"; - req_one_access = list(48) - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/cargostore/warehouse) -"aFd" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/cargostore/warehouse) -"aFe" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFh" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aFi" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aFj" = ( -/obj/structure/table/standard, -/obj/item/device/t_scanner, -/obj/item/weapon/storage/briefcase/inflatable, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aFk" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/table/bench/steel, -/obj/random/cigarettes, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aFl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aFm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/holosign/bar{ - id = "maintbar"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aFn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aFo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aFp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/external{ - name = "Evacuation Route" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aFq" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"aFr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"aFs" = ( -/obj/machinery/atmospherics/pipe/cap/visible/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"aFt" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Warehouse" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/cargostore/warehouse) -"aFu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFw" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - id_tag = null; - name = "Cafe" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor, -/area/crew_quarters/visitor_dining) -"aFx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aFy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aFz" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aFA" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aFB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/landmark/start{ - name = "Bartender" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aFC" = ( -/obj/structure/table/marble, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/machinery/floor_light/prebuilt{ - on = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aFD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/visitor_dining) -"aFE" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFF" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/bed/chair/wood, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/catwalk, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aFN" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - name = "\improper Secondary Evacuation Route" - }, -/turf/simulated/wall, -/area/maintenance/lower/research) -"aFO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFP" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aFS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aFT" = ( -/obj/structure/table/marble, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/machinery/floor_light/prebuilt{ - on = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aFU" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFV" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFW" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFZ" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aGa" = ( -/turf/simulated/wall, -/area/tether/surfacebase/cargostore) -"aGb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGi" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGj" = ( -/turf/simulated/wall, -/area/tether/surfacebase/cargostore/office) -"aGk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/power/apc/high{ - dir = 4; - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGr" = ( -/obj/structure/bed/chair/sofa/brown/right, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGs" = ( -/obj/structure/bed/chair/sofa/brown/corner, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGt" = ( -/turf/simulated/wall, -/area/vacant/vacant_site/east) -"aGu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aGv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aGw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aGx" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aGy" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - dir = 8 - }, -/obj/machinery/floor_light/prebuilt{ - on = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aGz" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aGA" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aGB" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/high{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aGC" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aGD" = ( -/obj/structure/cable/ender{ - icon_state = "4-8"; - id = "surface-solars" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aGE" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aGF" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aGG" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aGH" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aGI" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aGJ" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aGK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGP" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGQ" = ( -/obj/machinery/door/airlock/glass_mining{ - id_tag = "cargodoor"; - name = "Cargo Office"; - req_access = list(31); - req_one_access = list() - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/cargostore/office) -"aGR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aGS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGT" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like it's on MTV. Now you can't blame that demi-cowgirl for working her money maker. I wonder what else is on?"; - icon_state = "frame"; - pixel_x = 16; - pixel_y = 64 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGU" = ( -/obj/structure/bed/chair/sofa/brown/left{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGV" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aGW" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/machinery/computer/guestpass{ - dir = 1; - pixel_y = -28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGX" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGY" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aHa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/structure/closet/bombcloset, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aHb" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aHc" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aHd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aHe" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aHf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aHg" = ( -/obj/random/action_figure, -/obj/random/action_figure, -/obj/random/action_figure, -/obj/structure/closet/wardrobe/grey{ - starts_with = list(/obj/structure/barricade/cutout/viva, /obj/item/clothing/under/color/grey = 3, /obj/item/clothing/shoes/black = 3, /obj/item/clothing/head/soft/grey = 3, /obj/item/clothing/mask/gas/wwii = 3, /obj/item/weapon/storage/toolbox/mechanical = 3, /obj/item/clothing/gloves/fyellow = 3, /obj/item/weapon/card/id/gold/captain/spare/fakespare = 3, /obj/item/weapon/soap/syndie = 3, /obj/item/weapon/storage/box/mousetraps = 3) - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aHh" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aHi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aHj" = ( -/obj/machinery/door/window/southright{ - req_access = list(5) - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aHk" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aHl" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aHm" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aHn" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aHo" = ( -/obj/structure/sign/warning/high_voltage{ - name = "\improper SOLAR FARM" - }, -/turf/unsimulated/wall/planetary/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aHp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aHq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/structure/flora/pottedplant/stoutbush, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aHr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aHs" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aHt" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Science Maintenance" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/hallway) -"aHu" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/boxinggloves, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aHv" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/surface_atmos) -"aHw" = ( -/obj/effect/floor_decal/rust, -/obj/random/trash_pile, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aHx" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aHy" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aHz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aHA" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aHB" = ( -/obj/effect/floor_decal/rust, -/obj/structure/toilet{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm3) -"aHC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aHD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aHE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 6 - }, -/obj/machinery/button/remote/airlock{ - id = "maintdorm2"; - name = "Room 2 Lock"; - pixel_x = 23; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aHF" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/westleft{ - req_access = list(31) - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aHG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/visitor_dining) -"aHH" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aHI" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aHJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/visitor_dining) -"aHK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aHL" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aHM" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet, -/obj/machinery/conveyor{ - id = "surfacecargo" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/warning{ - desc = "A warning sign. It has great big words saying 'Surface Cargo Deliveries. Stay behind the railings when active!' on it."; - name = "Surface Cargo Delivery"; - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/cargostore) -"aHN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aHO" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aHP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aHQ" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aHR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aHS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aHT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aHU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aHV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common{ - name = "Mining Maintenance Access" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/cargostore) -"aHW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 6 - }, -/obj/machinery/button/remote/airlock{ - id = "maintdorm1"; - name = "Room 1 Lock"; - pixel_x = 23; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"aHX" = ( -/obj/effect/floor_decal/rust, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm1) -"aHY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aHZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aIa" = ( -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aIb" = ( -/obj/structure/railing, -/obj/structure/closet, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/cigarettes, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aIc" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aId" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aIe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aIf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aIg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm3) -"aIh" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"aIi" = ( -/obj/structure/table, -/obj/item/frame, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aIj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aIk" = ( -/obj/structure/railing, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aIl" = ( -/obj/structure/flora/pottedplant/flower, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aIm" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aIn" = ( -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aIo" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aIp" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aIq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aIr" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aIt" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIv" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIw" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIx" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIz" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aIB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/vending/wallmed_airlock{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aIC" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/binary/passive_gate/on, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aID" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aIE" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aIF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aIG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aIH" = ( -/obj/structure/table, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"aII" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aIJ" = ( -/obj/effect/floor_decal/rust, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aIK" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aIL" = ( -/obj/structure/table/rack, -/obj/random/junk, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aIM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aIN" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Atmospherics"; - charge = 2e+006 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aIO" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Atmos Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aIP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals_central6{ - pixel_y = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aIU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/machinery/camera/network/engineering, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIX" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/fiftyspawner/steel, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aIZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aJa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aJb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aJc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/steeldecal/steel_decals_central6{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJi" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aJk" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - req_access = list(31) - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aJl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aJm" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/condiment/small/sugar, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJn" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJo" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJq" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aJs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aJt" = ( -/obj/structure/railing, -/obj/machinery/conveyor{ - dir = 5; - id = "surfacecargo" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aJu" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/stack/material/wood{ - amount = 10 - }, -/obj/structure/table, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aJv" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aJw" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aJx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aJy" = ( -/obj/structure/table/standard, -/obj/item/weapon/stamp/cargo, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/weapon/clipboard, -/obj/item/weapon/folder/yellow, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aJz" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/device/retail_scanner/civilian, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aJA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aJB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aJC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aJD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light_construct/small, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aJE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aJF" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos/gas_storage) -"aJG" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Substation"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aJH" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aJI" = ( -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aJJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aJK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aJL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aJM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aJN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aJO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/structure/table/standard, -/obj/item/stack/cable_coil/random_belt, -/obj/item/stack/cable_coil/random_belt, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/item/taperoll/atmos, -/obj/item/stack/cable_coil/random_belt, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aJP" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/shifted, -/obj/effect/floor_decal/corner/lightgrey/border/shifted, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJQ" = ( -/obj/effect/floor_decal/borderfloor/shifted, -/obj/effect/floor_decal/corner/lightgrey/border/shifted, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor/shifted, -/obj/effect/floor_decal/corner/lightgrey/border/shifted, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aJT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aJU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aJV" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aJY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aJZ" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aKa" = ( -/turf/simulated/wall, -/area/maintenance/asmaint2) -"aKb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aKc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aKd" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aKe" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aKf" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aKg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aKh" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/weapon/tank/oxygen/red, -/obj/item/clothing/mask/gas/wwii, -/obj/item/clothing/head/hardhat/red, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aKi" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aKj" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aKk" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aKl" = ( -/obj/structure/table/standard, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmos RC"; - pixel_y = 28 - }, -/obj/item/weapon/tool/wrench, -/obj/item/device/t_scanner, -/obj/item/weapon/storage/belt/utility/atmostech, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKm" = ( -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/table/standard, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/item/device/radio/headset/headset_eng, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc/super{ - dir = 1; - pixel_y = 28 - }, -/obj/machinery/button/remote/blast_door{ - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - req_one_access = list(10,24) - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKn" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/obj/structure/table/standard, -/obj/item/device/pipe_painter{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/pipe_painter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKo" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/structure/table/standard, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKp" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKq" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKr" = ( -/obj/structure/railing, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aKs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/cee, -/obj/effect/floor_decal/industrial/danger/cee, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aKv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/railing, -/obj/structure/table/standard, -/obj/random/maintenance/engineering, -/obj/item/stack/cable_coil/random_belt, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/item/weapon/storage/box/lights/mixed, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aKx" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKy" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKz" = ( -/obj/item/weapon/beach_ball/holoball, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aKA" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKB" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKC" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/random/plushie, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKD" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/vending/coffee{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKE" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/lapvend{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKF" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/machinery/vending/cigarette{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Mailing Room"; - req_access = list(50) - }, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "surfcargooffice"; - layer = 3.3; - name = "Cargo Office Shutters" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aKH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKI" = ( -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/machinery/button/remote/blast_door{ - id = "surfcargooffice"; - name = "Office Shutters"; - pixel_x = -7; - pixel_y = 24; - req_access = list(31) - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aKJ" = ( -/obj/machinery/light, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aKK" = ( -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aKL" = ( -/turf/simulated/wall, -/area/rnd/external) -"aKM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "rnd_s_airlock_inner"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/external) -"aKN" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/access_button/airlock_interior{ - master_tag = "rnd_s_airlock"; - pixel_x = 25; - pixel_y = 24 - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "rnd_s_airlock_inner"; - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/external) -"aKO" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aKP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aKQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aKR" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aKS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"aKT" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aKU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/pipedispenser, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKV" = ( -/obj/item/weapon/stool, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKW" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKX" = ( -/obj/structure/cable/cyan{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/machinery/atmospherics/pipe/zpipe/up, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aKY" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - name = "Distro Loop Drain" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - name = "Waste to Filter" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - name = "Air to Distro" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLc" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLd" = ( -/obj/machinery/atmospherics/pipe/zpipe/up, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aLe" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aLg" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_7) -"aLh" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/crew_quarters/visitor_lodging) -"aLi" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/crew_quarters/visitor_lodging) -"aLj" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_8) -"aLk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aLl" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aLm" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"aLn" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/sign/fire{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/external) -"aLo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/machinery/embedded_controller/radio/airlock/phoron{ - id_tag = "rnd_s_airlock"; - pixel_y = 30 - }, -/obj/machinery/airlock_sensor/phoron{ - id_tag = "rnd_s_airlock_sensor"; - pixel_x = 11; - pixel_y = 30 - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/tiled, -/area/rnd/external) -"aLp" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/external) -"aLq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/external) -"aLr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "rnd_s_airlock_pump" - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled, -/area/rnd/external) -"aLs" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/external) -"aLt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aLu" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aLv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aLw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aLx" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aLy" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aLz" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aLA" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/pipedispenser/disposal, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLB" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLC" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLD" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLE" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/binary/pump/on{ - name = "Ports to Waste" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLF" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLG" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLH" = ( -/obj/machinery/atmospherics/binary/pump/on{ - name = "Scrubber to Waste" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLI" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - name = "Air to Distro" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLJ" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - name = "Air to Ports" - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aLL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aLM" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_7/holo) -"aLN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/HolodeckControl/holodorm/seven, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aLO" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aLP" = ( -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/yellow/bordercorner, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aLR" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aLS" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_y = 26 - }, -/obj/random/drinkbottle, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aLT" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aLU" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aLV" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aLW" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"aLX" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"aLY" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/external) -"aLZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aMa" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/external) -"aMb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/external) -"aMc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/structure/flora/pottedplant, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aMd" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/external) -"aMe" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aMf" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aMg" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_atmos{ - name = "Canister Storage"; - req_access = list(24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMn" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMq" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - target_pressure = 300 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMw" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aMx" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_7/holo) -"aMy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aMz" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm7"; - name = "Room 7 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aMA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aMB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aMC" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm8"; - name = "Room 8 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aMD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aME" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aMF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aMG" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aMH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"aMI" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"aMJ" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "rnd_s_airlock_outer"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/external) -"aMK" = ( -/obj/machinery/access_button/airlock_exterior{ - master_tag = "rnd_s_airlock"; - pixel_x = 25; - pixel_y = -8; - req_access = list(47) - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "rnd_s_airlock_outer"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/external) -"aML" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/brown/bordercorner2, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aMM" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aMN" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_atmos{ - name = "Canister Storage"; - req_access = list(24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMU" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/yellow/bordercorner, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMV" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMW" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMX" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNb" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/yellow/bordercorner, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNg" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNh" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aNj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aNk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm7"; - name = "Room 7 (Holo)" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_7) -"aNl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aNm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aNn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm8"; - name = "Room 8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_8) -"aNo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aNp" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aNq" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aNr" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/bluedouble, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aNs" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/weapon/towel/random, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aNt" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/random/soap, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"aNu" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_8) -"aNv" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/rnd/external) -"aNw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/rnd/external) -"aNx" = ( -/obj/machinery/camera/network/research, -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/rnd/external) -"aNy" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet/crate, -/obj/random/cigarettes, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/research) -"aNz" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aNA" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aNB" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aNC" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aND" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNE" = ( -/turf/simulated/wall, -/area/engineering/atmos) -"aNF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNG" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNH" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNI" = ( -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNJ" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNK" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNM" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNN" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNO" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNP" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aNR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aNS" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_6) -"aNT" = ( -/obj/item/stack/material/steel, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aNU" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aNV" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aNW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNY" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aOa" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOc" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Port to Isolation" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOe" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOf" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOh" = ( -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOi" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOj" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_5) -"aOk" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_5/holo) -"aOl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/HolodeckControl/holodorm/five, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"aOm" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"aOn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aOo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aOp" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOq" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_y = 26 - }, -/obj/random/carp_plushie, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOr" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOs" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOt" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOu" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aOv" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aOw" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aOx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOy" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOA" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOD" = ( -/obj/machinery/atmospherics/omni/mixer{ - name = "Air Mixer"; - tag_north = 2; - tag_south = 1; - tag_south_con = 0.79; - tag_west = 1; - tag_west_con = 0.21 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOE" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_5/holo) -"aOG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"aOH" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm5"; - name = "Room 5 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"aOI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aOJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aOK" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm6"; - name = "Room 6 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aON" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOO" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aOQ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aOR" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos/processing) -"aOS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aOT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aOU" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOX" = ( -/obj/machinery/atmospherics/pipe/tank/oxygen, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"aOZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"aPa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm5"; - name = "Room 5 (Holo)" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_5) -"aPb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aPc" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aPd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm6"; - name = "Room 6" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_6) -"aPe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aPf" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aPg" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aPh" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/reddouble, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aPi" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/weapon/towel/random, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aPj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/random/soap, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aPk" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_6) -"aPl" = ( -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPn" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/super{ - dir = 1; - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPq" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPw" = ( -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 8; - name = "Waste Purge Valve"; - target_pressure = 4500 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPz" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPA" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPC" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPD" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPF" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aPG" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aPH" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aPI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aPJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aPK" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_4) -"aPL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPS" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPT" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPU" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/on{ - name = "Waste Compresser" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQa" = ( -/obj/machinery/atmospherics/pipe/tank/oxygen{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aQb" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_3) -"aQc" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_3/holo) -"aQd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/HolodeckControl/holodorm/three, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"aQe" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"aQf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aQg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aQh" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQi" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQj" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQk" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQl" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQm" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"aQn" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"aQo" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aQp" = ( -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aQq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aQr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aQs" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aQt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aQu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQw" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQC" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQE" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/computer/supplycomp{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aQF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_3/holo) -"aQG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"aQH" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm3"; - name = "Room 3 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"aQI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aQJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aQK" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm4"; - name = "Room 4 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQO" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"aQQ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"aQR" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aQS" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/stack/material/algae, -/obj/item/stack/material/algae, -/obj/item/stack/material/algae, -/obj/item/stack/material/algae, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aQT" = ( -/obj/machinery/atmospherics/binary/algae_farm/filled{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aQU" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aQV" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aQW" = ( -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aQX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aQY" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aQZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRd" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRf" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRh" = ( -/obj/machinery/atmospherics/pipe/tank/nitrogen, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aRi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"aRj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"aRk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm3"; - name = "Room 3 (Holo)" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_3) -"aRl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aRm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm4"; - name = "Room 4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_4) -"aRn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aRo" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aRp" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aRq" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/yellowdouble, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aRr" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/weapon/towel/random, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aRs" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/random/soap, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"aRt" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_4) -"aRu" = ( -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aRv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aRw" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aRx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aRy" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aRz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aRA" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRF" = ( -/obj/machinery/atmospherics/valve/digital{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRG" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRI" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRM" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aRN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aRO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aRP" = ( -/obj/machinery/atmospherics/unary/heater, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aRQ" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aRR" = ( -/obj/machinery/computer/supplycomp/control{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aRS" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRV" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/valve/digital, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSa" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "CO2 Filter"; - tag_east = 2; - tag_north = 1; - tag_south = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSc" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "Phoron Filter"; - tag_east = 2; - tag_south = 6; - tag_west = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSd" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "N2O Filter"; - tag_east = 2; - tag_south = 7; - tag_west = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSf" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "N2/O2 Filter"; - tag_east = 4; - tag_north = 3; - tag_south = 2; - tag_west = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aSh" = ( -/obj/machinery/atmospherics/pipe/tank/nitrogen{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aSi" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_1) -"aSj" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_1/holo) -"aSk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/HolodeckControl/holodorm/one, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"aSl" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"aSm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aSn" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSo" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_2) -"aSp" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSq" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/random/action_figure, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSr" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSs" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSt" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSu" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"aSv" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"aSw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aSx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aSy" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aSz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aSA" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aSB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aSC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aSD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSE" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSF" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSG" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/black/bordercorner, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/black/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSI" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/black/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSM" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSN" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSP" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSQ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - target_pressure = 300 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSR" = ( -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aSS" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_1/holo) -"aST" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"aSU" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm1"; - name = "Room 1 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"aSV" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm2"; - name = "Room 2 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aTa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"aTb" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"aTc" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aTd" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aTe" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aTf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aTg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aTh" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTk" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTl" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTm" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTo" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTp" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTq" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTs" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTt" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTu" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/pipedispenser, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTw" = ( -/obj/item/clothing/head/soft/rainbow, -/obj/item/clothing/shoes/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/gloves/rainbow, -/obj/item/clothing/suit/storage/seromi/cloak/standard/rainbow, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aTx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"aTy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"aTz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm1"; - name = "Room 1 (Holo)" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_1) -"aTA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aTB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/vending/loadout/loadout_misc, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aTC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aTD" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aTE" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aTF" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/orangedouble, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aTG" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/weapon/towel/random, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aTH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/random/soap, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"aTI" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_2) -"aTJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTK" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTN" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTO" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 8; - start_pressure = 3039.75 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTP" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTQ" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 8; - start_pressure = 1215.9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTR" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTS" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - dir = 8; - start_pressure = 1519.88 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTT" = ( -/obj/machinery/conveyor_switch{ - id = "surfacecargo"; - name = "Surface Cargo Delivery conveyor switch"; - pixel_x = -10; - pixel_y = 14 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aTU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aTV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aTW" = ( -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aTX" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aTY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTZ" = ( -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aUa" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aUb" = ( -/turf/simulated/wall, -/area/crew_quarters/showers) -"aUc" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 9 - }, -/obj/structure/undies_wardrobe, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/item/weapon/towel/random, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/item/device/communicator, -/obj/item/device/communicator, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aUl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aUm" = ( -/turf/simulated/wall, -/area/crew_quarters/visitor_laundry) -"aUn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/gear_painter, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/grey/bordercorner2{ - dir = 10 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/crew_quarters/visitor_laundry) -"aUr" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - id_tag = null; - name = "Laundry" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monofloor, -/area/crew_quarters/visitor_laundry) -"aUs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUu" = ( -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUv" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUw" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUx" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUy" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUz" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUA" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUB" = ( -/obj/machinery/power/apc/super{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUC" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos_intake) -"aUD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos_intake) -"aUE" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/mask/smokable/cigarette/joint{ - desc = "Ever been to orbit?" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aUF" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aUG" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/clothing/head/soft/purple, -/obj/machinery/vending/wallmed1/public{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aUO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aUP" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUR" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aUT" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/lower/atmos) -"aUU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/table/woodentable, -/obj/machinery/light_construct, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aUV" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aUW" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUX" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/item/weapon/bikehorn/rubberducky, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aVc" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aVd" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVe" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVf" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVh" = ( -/obj/structure/table/bench/padded, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aVi" = ( -/obj/structure/bed/chair/comfy/black, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/visitor_laundry) -"aVk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aVl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aVm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aVn" = ( -/turf/simulated/wall, -/area/maintenance/lower/atmos) -"aVo" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aVp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aVq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aVr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aVs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aVt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aVw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aVz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVC" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVD" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVE" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "atmos_intake" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aVF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aVG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aVH" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/table, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"aVI" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aVJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aVK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/bathrobe, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/structure/table/rack, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aVO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aVP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVS" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/grey/bordercorner, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVT" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVU" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1441; - id = "atmos_out"; - use_power = 1 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aVV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aVW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aVX" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/double, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aVY" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aVZ" = ( -/obj/machinery/vending/boozeomat, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWa" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWc" = ( -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWd" = ( -/obj/structure/table/borosilicate, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWe" = ( -/obj/structure/table/borosilicate, -/obj/structure/dancepole, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/bathrobe, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aWj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aWk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/random/soap, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aWl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aWm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aWn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/visitor_laundry) -"aWo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/vending/loadout/costume{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aWr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aWs" = ( -/obj/structure/closet, -/obj/random/maintenance/engineering, -/obj/random/junk, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aWt" = ( -/obj/structure/table/rack, -/obj/random/maintenance/engineering, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aWu" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aWv" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aWw" = ( -/obj/structure/table, -/obj/item/stack/material/wood{ - amount = 10 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWx" = ( -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/junk, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aWy" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aWz" = ( -/obj/machinery/smartfridge, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWA" = ( -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWB" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/bathrobe, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aWI" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/machinery/light, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aWJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/obj/structure/table/standard, -/obj/random/soap, -/obj/random/soap, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aWK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aWL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aWM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/vending/fitness{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/vending/cola{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWO" = ( -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aWP" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aWQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWR" = ( -/obj/structure/table, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aWS" = ( -/obj/structure/table, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWT" = ( -/obj/structure/table/bench/padded, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/maintenance/lower/atmos) -"aWV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/vending/cigarette{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aWX" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWY" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/grey/bordercorner2{ - dir = 9 - }, -/obj/machinery/vending/nifsoft_shop{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aXa" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/structure/table/standard, -/obj/item/weapon/storage/laundry_basket, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/grey/bordercorner2, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aXb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aXc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 6 - }, -/obj/structure/closet/crate, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aXd" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aXe" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXf" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aXg" = ( -/obj/structure/ladder/up, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXh" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - name = "Maintenance Access" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXi" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXj" = ( -/obj/machinery/button/holosign{ - id = "maintbar"; - pixel_x = -24 - }, -/obj/structure/table, -/obj/item/stack/material/wood{ - amount = 10 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXk" = ( -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aXl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/wood, -/area/maintenance/lower/atmos) -"aXn" = ( -/obj/random/junk, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aXr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXt" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXw" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXy" = ( -/obj/random/cash, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXz" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/maintenance/lower/atmos) -"aXA" = ( -/obj/structure/table/steel, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXI" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 1; - name = "Maintenance Access" - }, -/turf/simulated/floor/wood, -/area/maintenance/lower/atmos) -"aXJ" = ( -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXP" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXQ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aXR" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/masks, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXS" = ( -/obj/machinery/door/window/southleft, -/obj/effect/decal/cleanable/vomit, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXX" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/table/steel, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/vending/cigarette{ - dir = 8 - }, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYd" = ( -/turf/simulated/wall, -/area/vacant/vacant_bar) -"aYe" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/maintDorm3) -"aYf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - id_tag = "maintdorm3"; - name = "Room 3" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/crew_quarters/sleep/maintDorm3) -"aYg" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/maintDorm2) -"aYh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - id_tag = "maintdorm2"; - name = "Room 2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/crew_quarters/sleep/maintDorm2) -"aYi" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/maintDorm1) -"aYj" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - id_tag = "maintdorm1"; - name = "Room 1" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/crew_quarters/sleep/maintDorm1) -"aYk" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aYm" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aYo" = ( -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYp" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 6 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYr" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/vacant/vacant_bar) -"aYs" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/vacant/vacant_bar) -"aYu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 6 - }, -/obj/machinery/button/remote/airlock{ - id = "maintdorm3"; - name = "Room 3 Lock"; - pixel_x = 23; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aYv" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm3) -"aYx" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aYz" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aYB" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aYE" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aYF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aYG" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aYI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aYL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aYN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/vacant/vacant_bar) -"aYO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/vacant/vacant_bar) -"aYR" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm3) -"aYT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm3) -"aYY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm2) -"aZb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aZc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aZg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aZh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/white, -/area/vacant/vacant_bar) -"aZi" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_bar) -"aZj" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aZl" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light_construct/small, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm3) -"aZm" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/maintDorm3) -"aZo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aZp" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light_construct/small, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm2) -"aZq" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/maintDorm2) -"aZu" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aZv" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aZw" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aZz" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aZA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aZC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aZD" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"aZI" = ( -/obj/machinery/light_construct{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aZK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aZL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_construct{ - dir = 1 - }, -/obj/structure/table, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aZN" = ( -/obj/structure/table, -/obj/item/stack/material/wood{ - amount = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aZO" = ( -/obj/structure/closet, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aZP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_construct{ - dir = 1 - }, -/obj/structure/table, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aZQ" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aZR" = ( -/obj/structure/closet, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aZS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_construct{ - dir = 1 - }, -/obj/random/junk, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"aZU" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/fancy/markers, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aZX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aZY" = ( -/obj/machinery/light, -/obj/structure/ladder/up, -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aZZ" = ( -/obj/structure/symbol/sa, -/turf/simulated/wall, -/area/vacant/vacant_bar) -"baa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"bab" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"bad" = ( -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"bah" = ( -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"baj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"bal" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"bao" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"baq" = ( -/obj/structure/sign/warning, -/turf/simulated/wall, -/area/tether/surfacebase/outside/outside1) -"bar" = ( -/obj/structure/sign/xenobio, -/turf/simulated/wall, -/area/tether/surfacebase/outside/outside1) -"bas" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"bat" = ( -/obj/structure/table, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"bau" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"baA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"baB" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/iandouble, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"baC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"baD" = ( -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"baE" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/mimedouble, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"baF" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside1) -"baG" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside1) -"baK" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"baM" = ( -/obj/item/stack/material/steel, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"baO" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"baP" = ( -/obj/item/stack/material/steel, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"baQ" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"baR" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"baS" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"baT" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"baU" = ( -/turf/simulated/mineral/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"baV" = ( -/turf/simulated/floor/outdoors/dirt/virgo3b, -/area/tether/surfacebase/outside/outside1) -"baW" = ( -/obj/structure/sign/warning/caution{ - desc = "No unarmed personnel beyond this point."; - name = "\improper DANGER - WILDERNESS" - }, -/turf/unsimulated/wall/planetary/virgo3b, -/area/tether/surfacebase/outside/outside1) -"baX" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Cargo Shop" - }, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"baY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "surfcargooffice"; - layer = 3.3; - name = "Cargo Office Shutters" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/cargostore/office) -"baZ" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bba" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "surfcargooffice"; - layer = 3.3; - name = "Cargo Office Shutters" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/tether/surfacebase/cargostore/office) -"bbb" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Mental Health and North EVA" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/tether/surfacebase/lowernorthhall) -"bbc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bbd" = ( -/obj/random/cash, -/obj/random/contraband, -/obj/random/mre, -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bbe" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bbf" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/tether/surfacebase/lowernorthhall) -"bbg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbi" = ( -/obj/machinery/door/airlock/engineering{ - name = "CargoShop Substation"; - req_one_access = list(11,24,50) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbj" = ( -/turf/simulated/wall, -/area/maintenance/substation/SurfMedsubstation) -"bbk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbo" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/external) -"bbp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbr" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Medbay Substation"; - req_one_access = list(11,24,5) - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbs" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - CargoShop"; - output_attempt = 0 - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbv" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbw" = ( -/obj/structure/table/rack, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bbx" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "SurfMed Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bby" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/engineering{ - name = "Medbay Substation"; - req_one_access = list(11,24,5) - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - CargoShop Subgrid"; - name_tag = "CargoShop Subgrid" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbD" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbF" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "CargoShop Substation"; - req_one_access = list(11,24,50) - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbG" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/hallway/lower/first_west) -"bbH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"bbI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/SurfMedsubstation) -"bbJ" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - SurfMed"; - output_attempt = 0 - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbL" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbM" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/SurfMedsubstation) -"bbN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"bbO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"bbP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"bbQ" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/tether/elevator) -"bbR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"bbS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"bbT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bbU" = ( -/obj/structure/table/rack, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bbV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - SurfMed Subgrid"; - name_tag = "SurfMed Subgrid" - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbW" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbX" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bbY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbZ" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"bca" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"bcc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"bcd" = ( -/turf/simulated/mineral, -/area/maintenance/lower/xenoflora) -"bcf" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/masks, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/lime/bordercorner2, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"bch" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bci" = ( -/obj/structure/disposalpipe/segment, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bcj" = ( -/obj/machinery/door/airlock/glass{ - name = "Dressing Room" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcl" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcm" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcn" = ( -/obj/structure/closet/crate, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/cigarettes, -/obj/random/coin, -/obj/random/drinkbottle, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcp" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"bcq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/engi{ - id_tag = "elevescapel"; - name = "Elevator Maintenance" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "elevescapel"; - name = "elevator escape button"; - pixel_y = 32 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'CRUSH WARNING'."; - name = "\improper CRUSH WARNING"; - pixel_y = 32 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcv" = ( -/obj/structure/disposalpipe/up{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcz" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcA" = ( -/obj/structure/table, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcC" = ( -/obj/structure/closet/crate, -/obj/random/unidentified_medicine, -/obj/random/firstaid, -/obj/random/drinkbottle, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcD" = ( -/obj/structure/closet/wardrobe/black, -/obj/random/maintenance/clean, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcE" = ( -/obj/structure/closet/wardrobe/white, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcG" = ( -/obj/structure/undies_wardrobe, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcH" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcK" = ( -/obj/structure/closet/wardrobe/xenos, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcL" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcM" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light/small, -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 6 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"bcQ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "brig_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/westleft{ - req_access = list(2) - }, -/obj/machinery/door/window/brigdoor/eastright{ - req_access = list(2) - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"bcS" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/cargo, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bcT" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "rnd_s_airlock_pump" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled, -/area/rnd/external) -"bcV" = ( -/obj/effect/landmark{ - name = "droppod_landing" - }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside1) -"bcY" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bcZ" = ( -/obj/machinery/computer/HolodeckControl{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bda" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdb" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/holodeck_control) -"bdc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bdd" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bde" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bdg" = ( -/obj/machinery/door/airlock{ - name = "Holodeck" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/holodeck_control) -"bdh" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdi" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdj" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bdk" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "holodeck" - }, -/turf/simulated/floor, -/area/holodeck_control) -"bdl" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdn" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bdo" = ( -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdp" = ( -/obj/machinery/button/windowtint{ - id = "holodeck"; - pixel_x = 35; - range = 14; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - pixel_x = 22; - report_danger_level = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdq" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/item/weapon/paper{ - info = "Brusies sustained in the holodeck can be healed simply by sleeping."; - name = "Holodeck Disclaimer" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bds" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bdt" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Holodeck" - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/holodeck_control) -"bdw" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdz" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/obj/structure/sink/kitchen{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/holodeck_control) -"bdA" = ( -/obj/machinery/door/airlock/glass{ - name = "Holodeck" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdB" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bdC" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdE" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdH" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdJ" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bqI" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/brig/storage) -"byn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"byP" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bzb" = ( -/obj/machinery/camera/network/security{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"bHK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"bHR" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bJz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"bMs" = ( -/obj/machinery/door/airlock/glass_external/public, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/tram) -"bMP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bOd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"bPt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bSx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/landmark/tram, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"bZC" = ( -/turf/simulated/floor/looking_glass, -/area/looking_glass/lg_1) -"ccA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"cdO" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"cpp" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - id_tag = null; - name = "Laundry" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor, -/area/crew_quarters/locker/laundry_arrival) -"cqZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"csb" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"csd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"cwS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"cAR" = ( -/turf/simulated/floor/looking_glass/center, -/area/looking_glass/lg_1) -"cGJ" = ( -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"cGU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"cHW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"cIh" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"cOq" = ( -/obj/random/cutout, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"cPs" = ( -/obj/machinery/computer/looking_glass{ - lg_id = "one" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/looking_glass/lg_1) -"cPX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"cWS" = ( -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"cXW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"ddU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"dfJ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/bag/trash, -/obj/item/weapon/storage/bag/trash, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"diq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"dju" = ( -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"dlB" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/donkpockets, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"doa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"dxY" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/weapon/tank/emergency/oxygen/engi, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/lowernorthhall) -"dyd" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/security{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"dCc" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/northern_star{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"dCs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"dFD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"dJZ" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"dMu" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"dPC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mopbucket, -/obj/item/weapon/mop, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"dYd" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"dZW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"eby" = ( -/obj/machinery/door/window/brigdoor/southleft{ - dir = 8; - id = "Cell 2"; - name = "Cell 2"; - req_access = list(2) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"eeo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/green{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"efV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"eku" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/target_stake, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"ekC" = ( -/obj/structure/table/steel, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"eow" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/atm{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"epD" = ( -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"erc" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 30 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/lowernorthhall) -"evF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"exW" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"ezn" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"eAd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"eBd" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"eDh" = ( -/obj/machinery/door/airlock{ - name = "Brig Restroom" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig/bathroom) -"eEn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"eFp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/gun/energy/laser/practice, -/obj/item/weapon/gun/projectile/shotgun/pump/rifle/practice, -/obj/item/ammo_magazine/clip/c762/practice, -/obj/item/ammo_magazine/clip/c762/practice, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"eGp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"eJQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "brig_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/brig) -"eQz" = ( -/turf/simulated/floor, -/area/maintenance/lower/mining_eva) -"eQT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"eUS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/computer/timeclock/premade/west, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"fcT" = ( -/turf/simulated/floor/looking_glass{ - dir = 8 - }, -/area/looking_glass/lg_1) -"ffD" = ( -/turf/simulated/floor/looking_glass{ - dir = 10 - }, -/area/looking_glass/lg_1) -"fmY" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"fpU" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/hidden/green, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"fqa" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/brig/bathroom) -"frz" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"fvH" = ( -/obj/machinery/door/airlock{ - name = "Brig Restroom" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"fyp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"fAW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"fCk" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - dir = 4 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"fDx" = ( -/obj/machinery/door/airlock/maintenance/sec{ - name = "Riot Control"; - req_one_access = list(63,24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"fLB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"fOy" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/curtain/open/shower/security, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig/bathroom) -"fPf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"geO" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"ghg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ghr" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"gjD" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"glc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"glH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"gnt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"gnW" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "briginner"; - name = "Brig"; - req_access = list(2); - req_one_access = newlist() - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"goJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"gud" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/toy/stickhorse, -/obj/machinery/camera/network/security{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/weapon/beach_ball/holoball, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"guV" = ( -/obj/structure/closet, -/obj/random/drinkbottle, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/vacant_site) -"gxa" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"gxM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"gAn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"gCa" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/lowerhall) -"gJK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"gVe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"gYx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"gZN" = ( -/turf/simulated/floor/looking_glass{ - dir = 9 - }, -/area/looking_glass/lg_1) -"hco" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"hdh" = ( -/obj/machinery/door/airlock/security{ - name = "The Hole"; - req_access = list(2) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"hmx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/machinery/holoposter{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"hoH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"hps" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"hpB" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "northciv_airlock_inner"; - locked = 1 - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "northciv_airlock"; - pixel_x = 25; - pixel_y = -8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/lowernortheva) -"huE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"hzx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"hAe" = ( -/turf/simulated/floor/looking_glass{ - dir = 5 - }, -/area/looking_glass/lg_1) -"hDd" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Firing Range"; - req_access = list(1) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"hFq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"hFG" = ( -/obj/effect/landmark/looking_glass, -/turf/simulated/floor/looking_glass/center, -/area/looking_glass/lg_1) -"hMu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"hOA" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "Cell 2"; - name = "Cell 2 Door"; - pixel_x = 28; - req_access = list(1,2) - }, -/obj/machinery/door_timer/cell_3{ - id = "Cell 2"; - name = "Cell 2"; - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"hPU" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"hQg" = ( -/obj/machinery/vending/hydronutrients/brig{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"hQw" = ( -/obj/machinery/atmospherics/unary/outlet_injector, -/obj/effect/floor_decal/corner/lightorange, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"hQP" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"hTw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"hTz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"hTQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "brig_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/brig) -"hYh" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/map_helper/airlock/door/int_door, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "northciv_airlock_inner"; - locked = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/lowernortheva) -"icB" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"iee" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"igw" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"ilZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"imW" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"iqO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"iti" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"iue" = ( -/turf/simulated/floor/looking_glass{ - dir = 1 - }, -/area/looking_glass/lg_1) -"iwE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"ixF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"iEk" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "Cell 1"; - name = "Cell 1 Door"; - pixel_x = 28; - req_access = list(1,2) - }, -/obj/machinery/door_timer/cell_3{ - id = "Cell 1"; - name = "Cell 1"; - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"iKy" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/lower/mining_eva) -"iUF" = ( -/obj/structure/table/steel, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"iWx" = ( -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/machinery/cryopod{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"jbU" = ( -/obj/effect/landmark{ - name = "maint_pred" - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"jio" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"jkt" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"jnj" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"jva" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"jzW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"jCD" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "briginner"; - name = "Brig"; - req_access = list(2); - req_one_access = newlist() - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"jDg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"jDI" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"jIc" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"jKD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"jPk" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"jQL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"jSU" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/mauve/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"jTQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"kbZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/structure/flora/pottedplant, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"kdi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"kfT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"kgk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"kjX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"klO" = ( -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"kmb" = ( -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"kuB" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"kwN" = ( -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"kxx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"kyE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"kAm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"kAG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"kCz" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"kEs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"kKl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"kMG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Locker Room" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"kPT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"kUN" = ( -/obj/machinery/camera/network/security{ - dir = 5 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"laR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"lbu" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/paleblue/bordercorner2, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"ldI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"lhM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - id = "Cell 2"; - name = "Cell 2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"loc" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"loj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"lpK" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"lry" = ( -/obj/structure/catwalk, -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/drinkbottle, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"lwL" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "brigouter"; - name = "Brig"; - req_access = list(2); - req_one_access = newlist() - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"lwN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"lxo" = ( -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom/department/security{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"lxU" = ( -/obj/machinery/holoposter, -/turf/simulated/wall, -/area/hallway/lower/first_west) -"lDW" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"lEg" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"lIj" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"lLD" = ( -/obj/machinery/camera/network/security{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"lMf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"lMK" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"lNp" = ( -/turf/simulated/floor/looking_glass/optional{ - dir = 4 - }, -/area/looking_glass/lg_1) -"lNt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"lQu" = ( -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/structure/table/steel, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"lQQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"lSW" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/blanks{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/weapon/storage/box/blanks{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/ammo_magazine/clip/c762/practice, -/obj/item/ammo_magazine/clip/c762/practice, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -28 - }, -/obj/item/ammo_magazine/m45/practice, -/obj/item/ammo_magazine/m45/practice, -/obj/item/ammo_magazine/m45/practice, -/obj/item/ammo_magazine/m45/practice, -/obj/item/ammo_magazine/m45/practice, -/obj/item/ammo_magazine/m45/practice, -/obj/item/ammo_magazine/m9mmt/practice, -/obj/item/ammo_magazine/m9mmt/practice, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"lTn" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/gasstorage) -"lTz" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"lUk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"lWT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/machinery/holoposter{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"mhu" = ( -/obj/structure/closet/secure_closet/brig, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"mon" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"mrO" = ( -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"mrR" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"mvM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"mAR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"mCe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"mGH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"mGP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"mHm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"mHO" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"mIw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"mOz" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/computer/cryopod{ - name = "asset retention console"; - pixel_y = -30 - }, -/obj/effect/landmark/tram, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"mRF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tether/surfacebase/tram) -"mRY" = ( -/obj/structure/catwalk, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"mSz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"mTw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = -22 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"mYf" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/brig) -"mYO" = ( -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"mZO" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/holoposter{ - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"naC" = ( -/turf/simulated/wall/r_wall, -/area/medical/virologyisolation) -"ndH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"neZ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"nis" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"niz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"njE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"nlo" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"nmf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"nmD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"npK" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"nsp" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ntZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"nvD" = ( -/obj/machinery/seed_storage/brig{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/obj/machinery/camera/network/security{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"nwH" = ( -/obj/structure/closet/crate, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"nBm" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"nBT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"nDD" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"nID" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"nKz" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "atrium" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/lower/vacant_site) -"nOB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"ocx" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - id = "Cell 1"; - name = "Cell 1" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"odn" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/lowerhall) -"ofS" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ofW" = ( -/obj/structure/disposalpipe/tagger{ - dir = 2; - name = "package tagger - Void"; - sort_tag = "Void" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"ohi" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"oib" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"okO" = ( -/obj/machinery/door/airlock{ - name = "Visitation"; - req_one_access = list(38,63) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"oli" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"oox" = ( -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"orf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/security{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"orF" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_one) -"osh" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ovG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"owv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"ozx" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"oKY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"oQm" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"oRz" = ( -/turf/simulated/floor/looking_glass{ - dir = 4 - }, -/area/looking_glass/lg_1) -"oTK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"oVq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"oVr" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"paY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"pdo" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"pea" = ( -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"pjs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"plW" = ( -/obj/machinery/computer/cryopod{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"pmr" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"pmV" = ( -/obj/machinery/atmospherics/unary/outlet_injector, -/obj/effect/floor_decal/corner/lightorange{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"ptv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"pyD" = ( -/obj/machinery/door/airlock/maintenance/common{ - name = "Mining Maintenance Access" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/tether/surfacebase/north_stairs_one) -"pCj" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/brig) -"pKE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"pZb" = ( -/obj/structure/closet/wardrobe/orange, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"qfJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/landmark/tram, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"qhq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"qjE" = ( -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"qmc" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"qor" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"qoK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"qsl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"qwm" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"qwV" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/brig) -"qDR" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/wall, -/area/maintenance/substation/cargostoresubstation) -"qJT" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/gglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/glasses/gglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -28 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"qKn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Dorms & Cafe" - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/tether/surfacebase/surface_one_hall) -"qOa" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"qOA" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"qPR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 26 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"qRI" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"qWk" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"qWW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"qYs" = ( -/obj/machinery/door/airlock/maintenance/sec{ - name = "Riot Control"; - req_one_access = list(63,24) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"raS" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark/tram, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"rww" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"rxq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"rxG" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"rzZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"rBG" = ( -/obj/structure/closet, -/obj/item/weapon/material/minihoe, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"rDJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"rHb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"rOh" = ( -/obj/machinery/disposal, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"rQe" = ( -/obj/structure/table/steel, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"rRC" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"rSG" = ( -/obj/machinery/light/small, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"rVb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"rVW" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"rYl" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"rYL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/cryopod/robot/door/tram, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/tram) -"rZZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"sbD" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"scf" = ( -/obj/effect/floor_decal/corner/lightorange, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"svZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"sxc" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"sya" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"szT" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"sEz" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"sHO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"sIO" = ( -/turf/simulated/floor/looking_glass{ - dir = 6 - }, -/area/looking_glass/lg_1) -"sLi" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"sQB" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"sVX" = ( -/obj/structure/table/steel, -/obj/item/weapon/material/twohanded/fireaxe/foam, -/obj/item/toy/nanotrasenballoon, -/obj/item/weapon/deck/cards, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"tak" = ( -/obj/structure/table/steel, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"tdh" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"tiJ" = ( -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"trV" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/brig/storage) -"tvk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"tvA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"txZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"tCV" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"tEo" = ( -/obj/random/trash_pile, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"tLx" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark/tram, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"tMD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"tMP" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"tNJ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"tQH" = ( -/obj/machinery/camera/network/security{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"tRA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"tRJ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "lg_1"; - name = "Looking Glass Lock"; - pixel_x = 28; - pixel_y = 28; - specialfunctions = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/looking_glass/lg_1) -"tRX" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"tTC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"tVd" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ubK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"ucv" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Solitary Confinement"; - req_access = list(2) - }, -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"uge" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"uiK" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/weaponsrange) -"uqH" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance/cargo, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"uuu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"uxF" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Locker Room" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"uzs" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/green{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"uAv" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"uAA" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/mauve/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"uDQ" = ( -/obj/machinery/button/remote/airlock{ - id = "brigouter"; - name = "Outer Brig Doors"; - pixel_x = 24; - pixel_y = -4; - req_access = list(2) - }, -/obj/machinery/button/remote/airlock{ - id = "briginner"; - name = "Inner Brig Doors"; - pixel_x = 34; - pixel_y = -4; - req_access = list(2) - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"uEK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"uFh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"uFs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"uFS" = ( -/obj/machinery/door/airlock/security{ - name = "Brig Recreation Storage"; - req_one_access = list(63) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"uHS" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"uKS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"uOe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"uOA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"uUP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/tether/surfacebase/surface_one_hall) -"vfy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"vhI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"vih" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"vlJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/research, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"vCb" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"vDb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"vHP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"vHW" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"vRL" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"vSS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"vTn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 10 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"vVr" = ( -/obj/machinery/computer/arcade/orion_trail, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"waR" = ( -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"wjq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"wpZ" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "brigouter"; - name = "Brig"; - req_access = list(2); - req_one_access = newlist() - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"wtD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"wwm" = ( -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"wwo" = ( -/obj/machinery/door/airlock{ - id_tag = "visitdoor"; - name = "Visitation Area"; - req_access = list(1) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"wxa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"wxV" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"wzA" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"wQS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"wRe" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"wUW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"wVB" = ( -/obj/machinery/door/window/brigdoor/southleft{ - dir = 8; - id = "Cell 1"; - name = "Cell 1"; - req_access = list(2) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"wVI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"xdV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"xgQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"xnn" = ( -/obj/machinery/holoposter, -/turf/simulated/wall, -/area/crew_quarters/visitor_laundry) -"xpP" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"xtS" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"xzn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"xAT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"xFG" = ( -/obj/structure/closet/secure_closet/brig, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"xOH" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/looking_glass/lg_1) -"xVX" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"xYx" = ( -/obj/structure/table/steel, -/obj/machinery/microwave, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"yaU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"ybc" = ( -/obj/structure/table/steel, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"ygY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -asP -asQ -asQ -asQ -asQ -asQ -asR -asQ -asQ -asR -asQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGD -aaa -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(3,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aaa -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(4,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aHo -aad -aad -aad -aad -aad -aad -aad -aad -aHL -aad -aad -aHo -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(5,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(6,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGF -aad -aad -aad -aad -aad -aad -aad -aad -aad -aHL -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(7,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(8,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aHL -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(9,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(10,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aHL -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(11,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(12,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(13,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGH -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(14,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(15,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(16,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(17,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(18,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(19,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(20,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -akH -aad -aad -aad -aad -aad -aad -aad -aad -akH -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(21,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajO -ajO -ajV -ajV -ajV -ajV -ajV -ajV -ajV -ajV -ajO -ajO -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(22,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajO -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -adK -aeo -aeo -aeo -aeo -aeo -adK -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -auK -auK -auK -auK -auK -auK -aEQ -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(23,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -adK -aep -adK -aeV -aeo -afq -adK -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -aAs -aBu -aCc -aCc -aCc -aCc -aER -aib -aib -aGI -aad -aad -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(24,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -adK -aep -aep -aeo -aeo -aeo -adK -aah -aah -aah -aah -aah -aah -aah -aoq -aoq -aoq -aoq -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -aaT -auK -auK -auK -auK -auK -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(25,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -adK -adK -adK -adK -adK -adK -adK -ajS -aah -aah -aah -aah -aah -aah -aoq -aoq -aoq -aoq -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(26,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -gZN -fcT -fcT -fcT -fcT -fcT -ffD -ajS -aah -aah -aah -aah -aah -aah -aor -aoV -aoV -aqm -aci -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(27,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -iue -cAR -cAR -cAR -cAR -cAR -bZC -ajS -aah -aah -aah -aah -aiy -aiy -aiy -aoW -apH -aiy -aqT -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -abB -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(28,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -iue -cAR -cAR -cAR -cAR -cAR -bZC -ajS -aah -aah -aah -aah -aiy -aoe -aos -aoX -apI -aqn -aqT -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(29,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -iue -cAR -cAR -hFG -cAR -cAR -bZC -ajS -aah -aah -aah -aah -aiy -aof -aot -aoY -apJ -aqo -aqT -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -aAl -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baq -aad -aad -aad -baq -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(30,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -iue -cAR -cAR -cAR -cAR -cAR -bZC -ajS -aah -aah -aah -aah -aiy -aiy -aiy -aoZ -apK -aiy -aqT -aah -aah -aah -aah -aah -aah -aah -aah -agv -agv -agv -agv -agv -agv -agv -azs -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bar -aad -aad -aad -bar -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(31,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajO -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -iue -cAR -lNp -lNp -lNp -cAR -bZC -ajS -aah -agU -agU -agU -agU -agU -aou -apa -apL -aqp -aqU -aah -aah -aah -aah -aah -aah -aah -aah -agv -agL -agW -ahH -adV -aip -aiJ -azs -aaT -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baq -baF -baF -baF -baq -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(32,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -ajO -akO -ajO -bdg -bdk -bdk -bdk -bdk -bdv -ajO -bdz -ajO -hAe -oRz -cPs -xOH -tRJ -oRz -sIO -ajS -aah -agU -ahi -alE -aiz -ajo -aov -apb -apM -aqq -aqU -aah -aah -aah -aah -aah -aah -aah -aah -agv -agO -agZ -ahO -aij -ais -aiK -azs -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adK -adK -adK -adK -adK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(33,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -ajO -ajO -ajO -bdh -bdl -bcZ -bdq -bdt -bdw -ajO -ajO -ajS -ajS -ajS -ajS -ajS -atd -ajS -ajS -ajS -aah -agU -ahj -ahD -aiA -agU -agU -apc -apN -agU -aqU -aah -aah -aah -aah -aah -aah -aah -aah -agv -agR -ahf -ahP -ahP -aiH -aiL -azs -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(34,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -ajO -bda -bdi -bdm -bdo -bdp -bdu -bdx -bdy -bdA -bdC -akU -ali -sbD -abK -orF -ajS -aah -aah -aah -agU -akm -ahE -apm -agU -aow -apd -apO -aqr -aqU -acs -acs -acs -acs -asz -asz -asz -asz -asz -agV -ahh -ahQ -ain -aiI -aiM -azs -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(35,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -ajO -bdb -ajO -ajO -ajO -ajO -ajO -ajO -ajO -ajO -bdD -akM -alj -alw -ajS -ajS -ajS -aah -aah -aah -agU -agU -anw -anM -agU -aox -ape -apP -aqs -aqV -arn -arE -arP -aqV -agk -agp -atD -atD -asz -agv -aht -agv -agv -agv -agv -azs -aAx -auK -aBv -aBv -aBv -aBv -aBv -aBv -aBv -aBv -aBv -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(36,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -ajL -bdc -ajL -aah -aah -aah -aah -ajS -ajS -akD -bdE -akN -akN -alx -alM -ajS -ajS -aah -aah -aah -aah -agU -agU -agU -agU -aoy -ape -apQ -aqt -aqV -aro -arF -arQ -aqV -asA -asW -asW -aug -agC -auY -avE -awl -awS -axA -ayr -azt -aAy -aBw -aCf -aCV -aCd -aDy -aES -ajB -aFY -aGd -aBv -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(37,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -ajL -ajL -bdd -ajS -ajS -ajS -ajS -ajS -ajS -akv -akE -bdF -bdJ -bdM -bdN -alN -ame -ajS -ajS -aah -aah -aah -aah -aah -aah -agU -aoz -ape -apP -aqu -aqV -arp -arF -arR -aqV -asB -asX -asX -agw -auE -abg -avF -awm -awT -axB -ays -ays -ays -acu -ake -akf -aDz -aEe -aET -aCe -cdO -glH -aBv -aah -aah -aah -aah -aKL -aKL -aKL -aKL -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(38,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -ajL -akV -bde -ajT -ajY -akb -akh -akk -akq -akw -akE -bdG -akW -akN -aly -alN -amf -amA -ajS -aah -aah -aah -aah -aah -aah -agU -aoA -apf -apR -aqv -aqV -arq -arG -arS -aqV -asC -ags -agt -auh -auE -aDr -avG -ahT -auK -aAj -abN -abN -abN -abN -abN -abN -abN -abN -abN -abN -ygY -aGX -aBv -aah -aah -aah -aah -aKL -auW -auW -aKL -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(39,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -ajL -akZ -ajM -ajT -ajY -akb -akh -akk -akr -akx -akE -bdH -akX -akN -aly -alN -amg -amB -ajS -aah -aah -aah -ahl -ahl -ahl -agU -aoB -apg -apS -aoB -aqV -arr -arH -arT -aqV -ahl -ahl -ahl -ahl -ahl -ava -avH -awn -auK -avh -abN -aeR -aeR -aji -agF -agP -aiQ -agD -aio -abN -xgQ -ofS -aBv -aah -aah -aah -aah -aKL -aLn -aLY -aKL -aah -aah -aah -aad -aad -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(40,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -ajL -akZ -abs -ajS -ajS -ajS -ajS -ajS -ajS -aky -akE -bdI -bdK -akN -aly -alN -amh -ajS -ajS -aah -aah -aah -ahl -ahG -aiD -ajp -aoC -aph -apT -aqw -aqW -ars -arI -arU -asj -asD -asY -atE -aui -auF -avb -avI -awo -auK -avh -abN -aeR -aeR -aeR -agF -agP -ahv -ahm -aiB -abN -lMf -aGX -aBv -aBv -aBv -aBv -aBv -aKL -aLo -bbo -aKL -aNv -aoq -aad -aad -aad -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(41,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -ajL -aLm -ajQ -aah -aah -aah -aah -aah -ajS -ajS -akF -akP -bdL -alk -alz -alO -ajS -ajS -aah -aah -aah -aah -ahl -afz -aiE -ajq -anx -anP -anx -anx -aqX -anx -anP -anx -ask -anx -asZ -anx -anx -anx -anx -acJ -awp -auK -avh -abN -aeR -aeR -aeR -agF -agP -ahw -aiq -aiB -abN -lwN -icB -aFI -aFJ -aFK -aJr -aJX -aKM -aLp -aMa -aMJ -aNw -aoq -aad -aad -aad -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(42,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -ajL -akZ -abt -ajU -aki -aki -aki -akl -aah -ajS -ajS -akQ -ala -all -alA -ajS -ajS -aah -aah -aah -aah -aah -ahl -ahI -anN -aog -aoD -api -apU -aqx -aqY -aoD -arJ -arV -asl -asE -aoD -atF -auj -auG -avc -avJ -awq -auK -avh -abN -aeR -aeR -aeR -agG -aha -ahy -aiu -aiB -alS -vlJ -uAA -aHp -aHN -aIB -aJs -aJY -aKN -aLq -aMb -aMK -aNw -aoq -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(43,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -ajL -bcY -bdn -bdj -bdn -bdn -bds -ajQ -aah -aah -ajS -ajS -lWT -alm -ajS -ajS -aah -aah -aah -aah -aah -aah -ahl -ahJ -anO -ajs -ahl -ahl -ahl -ahl -ahl -ahl -ahl -arW -asm -ahl -ahl -atG -auk -atH -auK -auK -auK -auK -axD -abN -aeR -aeR -aeR -agF -ahb -ahF -aih -aiv -alS -cIh -aGX -awn -awn -awn -anG -awn -aKL -aLr -bcU -aKL -aNx -aoq -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(44,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -akB -akB -akB -akB -akB -akB -akB -uiK -uiK -uiK -bcY -abu -kdi -uFh -ajL -ajS -alc -aln -ajS -aah -aah -aah -aah -aah -aah -aah -ahl -ahK -anP -ajt -ahl -apj -apj -apj -apj -apj -arK -apl -apo -apl -ata -atH -aul -auH -auK -avK -axI -awU -aAk -abN -aeR -aeR -agl -agN -ahd -ahY -aiw -aix -abN -ovG -jkt -awn -aBM -aIC -aCC -aJZ -aKL -aLs -aMd -aKL -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(45,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -eku -fPf -lIj -eGp -lIj -rxG -lxo -npK -qJT -uiK -ajM -aby -aki -akz -akG -akR -aeT -alf -akR -akR -akR -akR -akR -aah -aah -aah -ahl -ahL -anP -ajt -ahl -apk -apV -aqy -apl -apl -apl -apl -apl -apl -apl -atH -aum -auI -avd -avL -aws -abN -abN -abN -aeR -aeR -aeR -agF -ahe -ahF -aim -aiU -alT -ajd -aGX -awn -aHP -aID -aJv -aJZ -aKL -auW -auW -aKL -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(46,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -waR -dCs -waR -vhI -waR -nwH -eFp -bOd -lSW -uiK -ajM -bcY -bdn -bdn -bdB -akS -ald -alo -akR -akR -ami -amC -akR -akR -akR -akR -ahl -ahM -anP -aju -aoE -apl -apl -apl -apl -apl -apo -apl -aqy -apl -apl -atH -aun -auJ -ave -avM -aws -abN -abW -acp -afe -aeR -aeR -agG -aha -ahy -aiB -ajm -abN -kyE -aGX -adn -adn -adn -aCK -aKa -aKL -aKL -aKL -aKL -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(47,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -eku -uOA -pmr -gnt -mIw -kuB -pea -eEn -gjD -uiK -ajL -akl -aks -ajL -acj -akR -ale -alp -alr -alP -alr -alr -amS -amX -ana -ang -ans -any -anP -ajv -aoF -apX -apX -aqA -aqZ -apl -apl -apl -apl -apl -apl -atH -atH -atH -auK -avN -aws -abN -aiR -acp -afe -aeR -aeR -agF -agP -aik -aiF -akp -alS -ygY -aGX -adn -alY -adn -aCW -aKa -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(48,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -waR -vhI -waR -dCs -waR -tRX -eFp -kjX -dfJ -uiK -aah -akn -abE -jbU -akJ -akT -alg -alq -alB -alQ -amj -amD -amT -amY -anb -anh -ant -auZ -acT -adj -aoG -apn -apn -are -apl -apl -apl -apl -apl -apl -atb -apj -apj -auK -avf -awr -aws -abN -abN -abN -aeR -aeR -aeR -agF -agP -ahF -agx -alI -alU -aje -oli -adn -alZ -adn -adn -adn -adn -adn -adn -adn -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adK -adK -adK -adK -adK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(49,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -eku -rHb -lIj -dFD -lIj -dyd -klO -geO -rDJ -uiK -aah -abC -abF -abG -abF -akR -alh -als -akR -alR -ajz -amE -akR -akR -akR -akR -ahl -anz -anP -adk -aoE -apo -apo -apl -apl -aqy -apl -apl -apl -apl -apj -apj -apj -auK -avg -avP -awt -abN -acb -abN -aeR -aeR -ane -agF -agP -ail -aiG -alL -alS -ygY -hps -adn -ama -adn -amp -amv -amJ -amO -amO -adn -adn -adn -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baq -baG -baG -baG -baq -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(50,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -akB -akB -akB -akB -akB -akB -akB -akB -hDd -uiK -gCa -gCa -gCa -gCa -lTn -lTn -lTn -qYs -lTn -akR -akR -akR -akR -aah -aah -aah -ahl -anA -anP -adu -ahl -app -apl -apl -apl -aqy -apl -apl -apl -asF -apj -apj -apj -auK -avh -abm -abm -abN -abN -abN -abN -abN -abN -abN -abN -abN -abN -alS -alS -gxM -tvA -alV -amb -alV -amr -amx -amK -amO -amO -and -alY -adn -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bar -aad -aad -aad -bar -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(51,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -bqI -pZb -rBG -mhu -xFG -bqI -txZ -uge -gCa -epD -epD -gCa -fCk -fCk -exW -bJz -lTn -aah -aah -aah -aah -aah -aah -aah -ahl -ahL -acV -adF -ahl -apj -apj -apj -apl -apl -apl -apl -apl -apj -apj -apj -apj -auK -avh -abm -abn -abn -abn -acx -afg -abv -abm -aCm -akg -aDy -akj -aCV -aCV -szT -jSU -alW -amd -alW -ams -amy -amL -amL -amW -adn -adn -adn -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baq -aad -aad -aad -baq -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(52,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -bqI -sxc -ilZ -njE -qOa -bqI -kfT -fmY -gCa -epD -epD -gCa -vTn -fpU -rVW -bJz -lTn -aah -aah -aah -aah -aah -aah -aah -ahl -ahN -ada -adH -ahl -apj -apj -apj -apj -apl -apl -apl -aso -apj -apj -apj -apj -auK -avh -abm -abv -abv -abv -acD -afu -agm -abm -aCn -aDc -aDJ -aDJ -aDJ -aDJ -uOe -nis -adn -amn -amo -amt -amz -amN -amR -amR -and -alY -adn -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(53,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -bqI -sVX -mTw -rOh -gud -bqI -nOB -csd -gCa -epD -mHm -gCa -ezn -qPR -hco -ubK -lTn -aah -aah -aah -aah -aah -aah -aah -ahl -ahL -anP -adI -ahl -apj -apj -apj -apj -apl -apo -apo -asp -apj -apj -apj -apj -auK -avh -abm -abw -abw -abw -abv -afA -abv -abm -aCo -aDd -aDg -aEm -aDg -aDg -aGm -aGW -adn -amo -amo -amu -amI -amN -amR -amR -adn -adn -adn -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(54,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -bqI -bqI -uFS -trV -bqI -bqI -paY -tQH -gCa -odn -hdh -odn -lTn -fDx -lTn -lTn -lTn -odn -odn -aah -aah -aah -aah -aah -ahl -ahL -anP -adu -ahl -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -auK -avh -abm -abD -abv -abv -adz -afP -agn -agE -ajJ -aDe -aDK -aEn -aDe -aDe -aGn -aGX -adn -adn -adn -adn -adn -adn -adn -adn -adn -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(55,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -gCa -owv -kxx -kAm -jKD -jKD -dJZ -ntZ -lTz -gAn -mAR -orf -ixF -vSS -tTC -iqO -xVX -rww -odn -aah -aah -aah -aah -aah -ahl -anB -anP -adu -ahl -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -auK -avh -abm -abw -abw -abw -adM -afU -abv -abm -ajW -aDf -aDL -aDg -aFe -aDg -aGo -aGY -awn -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aOR -aOR -aOR -aOR -aOR -aOR -aOR -aOR -aOR -aOR -aTW -aTW -aTW -aTW -aVE -aTW -aTW -aTW -aTW -aTW -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(56,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aah -gCa -jTQ -nBT -hFq -hOA -vRL -hFq -iEk -vRL -hFq -neZ -diq -uDQ -mvM -fLB -dMu -jIc -wRe -odn -aah -aah -aah -aah -aah -ahl -ahR -anP -adu -ahl -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -auK -avh -abm -abv -abv -abv -adM -afU -abv -abm -ajX -aDf -aDL -aDg -aFe -aDg -aGo -aGX -awn -aBO -aBO -aBO -aah -aah -aah -aah -aah -aah -aah -aah -aOR -aPl -aPl -aQo -aQR -aRu -aPl -aPl -aPl -aOR -aTW -aUv -aUy -aUv -aUy -aUv -aUy -aUv -aUy -aTW -aTW -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(57,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -gCa -gCa -ucv -pCj -eJQ -eby -pCj -eJQ -wVB -pCj -pCj -okO -qwV -wpZ -lwL -abT -abT -abT -abT -abT -abT -abT -abT -abT -lxU -ahL -anP -adu -ahl -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -auK -avh -abm -abI -abI -abI -adM -afU -abv -abm -aka -aFf -akc -akd -aFf -aFf -aGp -aGZ -aHt -aBN -aIa -aBO -aah -aah -aah -aah -aah -aah -aah -aah -aOR -aPl -aPL -aQp -aQS -aQp -aRP -aSw -aQp -aTJ -aTX -aUw -aUR -aUR -aUR -aUR -aUR -aUR -aUR -aUy -aTW -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(58,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -gCa -iWx -qsl -pCj -mrO -kmb -pCj -tiJ -kmb -pCj -kUN -cGU -qwV -nmf -hMu -abT -bbd -auM -baZ -bbw -bbU -cGJ -bch -air -ahl -ahK -add -adJ -ahl -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -auK -avh -abm -abI -abI -abI -adN -afU -agr -abm -aCs -aDh -aDN -aEp -aFg -aFL -aGq -aHa -awn -aBP -aCv -aBO -aBO -aBO -aBO -aBO -aBO -aBO -aBO -aBO -aOR -aPl -aPM -aQq -aQT -aRv -aRP -aSx -aTc -aTK -aTX -aUx -aUA -aUx -aUA -aUx -aUA -aUx -aXd -aXd -aTW -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(59,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -gCa -kwN -lLD -pCj -qjE -bzb -pCj -qjE -bzb -pCj -bcQ -hTQ -qwV -wVI -oox -abT -amQ -bbe -bbe -bbe -bbe -bbe -bbe -bci -bbG -bbH -bbN -adu -ahl -apj -apj -apj -apj -apj -apj -apj -apu -apu -apu -apu -apu -apu -avj -abm -abm -abm -abm -abm -afX -abm -abm -awn -awn -awn -aEq -awn -awn -awn -awn -awn -aBP -aCw -aLv -aCY -aCZ -aLv -aMf -aLv -aLv -aLv -aLv -aej -aPm -aPN -aQr -aQT -aRw -aRQ -aSy -aTd -aTK -aTX -aUy -aUv -aUy -aUv -aUy -aUv -aUy -aXd -aXd -aTW -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(60,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -gCa -wwm -jio -pCj -dju -kmb -pCj -dju -kmb -pCj -jzW -hzx -qwV -wtD -wQS -abT -anp -aeW -aeW -aeW -aeW -aeW -aeW -aeW -aeW -ahL -bbO -adu -ahl -apu -apu -apu -apu -apu -apu -apu -apu -uqH -mHO -csb -nBm -asn -atl -axC -kCz -csb -imW -tMP -alJ -apu -aAm -aCt -aDi -aDO -aEr -aFh -aDi -aah -aah -aBO -aBP -aIG -aCX -aIa -aIa -aIa -aIa -aIa -aIa -aIa -aIa -aOR -aPn -aPO -aQs -aQT -aRx -aRQ -aSx -aTe -aTL -aTX -aUz -aUR -aUR -aUR -aUR -aUR -aUR -aUR -aUx -aTW -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(61,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -gCa -gCa -gCa -pCj -pCj -lhM -pCj -pCj -ocx -pCj -pCj -wwo -qwV -gnW -jCD -iKy -anp -aeW -amk -amF -amU -agz -agI -ani -aeW -ahS -bbP -bbS -bbG -apW -aqz -apW -arh -axS -axS -bcl -apu -agy -alb -alb -alb -alb -alC -axE -ayD -alF -alG -alH -alK -acW -aAn -aAv -aDi -aDP -aEs -aFi -aDi -aah -aah -aBO -aCh -aIG -aBO -aKh -aIa -aDx -aBO -aMM -aNy -aDM -aIa -aOR -aPo -aPP -aQr -aQT -aRy -aRv -aSz -aTf -aOR -aTW -aUA -aUx -aUA -aUx -aUA -aUx -aUA -aUx -aTW -aTW -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(62,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adK -aad -aad -aad -pCj -wjq -wjq -tdh -lQu -dPC -tdh -qmc -ofW -qoK -uzs -kEs -hMu -iKy -anp -aeW -aml -afT -afT -afT -agJ -anj -anu -anC -adh -adO -ahl -bcn -axS -bcl -azb -apW -apW -apW -bbX -aiC -alt -alv -alv -apu -bcq -avT -avT -axe -avT -avT -avT -avT -aBJ -aAw -aDi -aDQ -aEt -aFj -aDi -aah -aah -aBO -aIa -aIG -aJF -aJF -aJF -aJF -aJF -aJF -aJF -aJF -aJF -aIh -aPp -aPl -aQt -aQU -aRz -ajn -aSA -aTg -aOR -aTW -aUB -ajf -ajg -ajh -aVU -aVU -aWO -aTW -aTW -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(63,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -mYf -rQe -ybc -rzZ -hTw -hTw -hTw -hTw -hTw -uFs -ddU -wxV -nID -iKy -anp -aeW -aft -amG -afr -afr -amG -agX -ahn -ahU -anP -adu -aoH -aoH -aoH -aoH -aoH -apu -apu -apu -apu -aqb -ate -atK -atL -apu -bcr -avT -awD -axf -axS -axS -axS -aAM -aBJ -aAE -aDi -aDi -aDi -aDi -aDi -aah -aah -aBO -aIa -aIG -aJF -aKi -aKi -aLx -aMg -aMN -aNz -aNU -aNU -aIh -aPq -aPQ -aOR -aQV -aRA -aRS -aRA -aTh -aOR -aOR -aUC -aOR -aVk -aVF -aVV -aVV -aOR -aOR -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aaa -"} -(64,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -pCj -oTK -oTK -pKE -hQw -eeo -oVq -oVq -pjs -loj -vih -dlB -xYx -iKy -anp -aeW -amm -amH -afr -agA -amH -agY -ahn -ahL -anP -adu -aoI -apq -apY -aqB -aoH -aoH -bcd -bcd -apu -aqb -ate -apu -apu -apu -adr -avT -agb -agb -agb -agb -agb -agb -aBJ -aAE -aBO -aah -aah -aah -aah -aah -aah -aBO -aIa -aIG -aJF -aKj -aKT -aLy -aMh -aMO -aNA -aNA -aOw -aIh -aPr -aPR -aOR -aQW -aRB -aRT -aSB -aTi -aTM -aTM -aUD -aTM -aEu -aEA -aWq -aWq -aQW -aOR -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aaa -"} -(65,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -pCj -tdh -tdh -ccA -jDI -ptv -vVr -frz -fqa -fqa -eDh -fqa -fqa -fqa -anp -aeW -afv -amG -afr -amZ -amG -agX -ahn -ahS -anP -adW -aoI -apr -apr -apr -ara -aoH -aoH -bcd -apu -asJ -ate -apu -bcd -apu -bcs -azG -agb -agc -agc -agc -agh -agb -aBJ -aAE -aBO -aah -aah -aah -aah -aah -aah -aBO -aCi -aHc -aJF -aKk -aKk -aLz -aMi -aMP -aNB -aNV -aNV -aIh -aPs -aPS -aOR -aQX -aRC -aRU -aSC -aTj -aSC -bcP -aSC -aUS -aEv -aSC -aEB -aWr -aQW -aOR -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baW -aaa -aaa -aaa -"} -(66,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -pCj -tdh -tdh -pKE -jDI -ptv -pCj -pCj -fqa -fOy -xdV -tMD -ekC -fqa -anp -aeW -afw -afV -agu -agu -agu -ank -aho -ahV -adi -aeq -aoJ -aps -apZ -aqC -arb -art -aoH -bcd -apu -aqb -ate -apu -bcd -apu -bcB -azK -bbQ -agc -agc -agc -agc -agb -aBJ -aAE -aBO -aah -aah -aah -aah -aah -aah -aBO -aIb -aHc -aJF -aJF -aJF -aJF -aMj -aMQ -aJF -aJF -aJF -aIh -aPq -aPT -aOR -aQY -aRA -aRV -aQV -aTh -aOR -aOR -aOR -aOR -aOR -aOR -aeu -aOR -aOR -aOR -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aoq -aoq -asG -"} -(67,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -pCj -wjq -wjq -pKE -pmV -loj -plW -tdh -fqa -fOy -eAd -ozx -iUF -fqa -anp -aeW -afr -afW -amV -agB -agK -anl -aeW -ahU -aiN -aet -aoI -apr -apr -aqD -arc -aru -aoH -bcd -apu -aqb -ate -apu -bcd -apu -bcs -azU -agb -agc -agc -agc -agc -agb -aBJ -aAE -aBO -aah -aah -aah -aah -aBO -aBO -aBO -aIc -aIJ -aIh -aKl -aKU -aLA -aMk -aMR -aNC -aNW -aOx -aJI -aPt -aJI -aJI -aQy -aRD -aRW -aSD -aTk -aIh -aah -aah -aah -aah -aVn -aTZ -aWs -aVn -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aoq -aoq -asS -"} -(68,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -mYf -rQe -tak -lEg -scf -mYO -mYO -mYO -fqa -fOy -rSG -fqa -fqa -fqa -anp -aeW -aeW -aeW -aeW -aeW -aeW -aeW -aeW -ahW -aiO -aew -aoI -apt -aqa -aqE -ard -arv -aoH -bcd -apu -aqb -ate -apu -bcd -apu -aiW -avT -agb -agc -agc -agc -agc -agb -aBJ -aAE -aBO -aah -aah -aah -aah -aBO -aHb -aBt -aBt -aIK -aIh -aKm -aJI -aLB -aMl -aMS -aND -aNX -aND -aND -aPu -aPU -aPU -aQZ -aRE -aRX -aSE -aSE -aIh -aah -aah -aah -aah -aVn -aTZ -aWt -aVn -aVn -aVn -aVn -aVn -aVn -aVn -aVn -aVn -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aoq -aoq -asS -"} -(69,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -pCj -oTK -oTK -tdh -hQg -nvD -eBd -eBd -fqa -fOy -xtS -fvH -uAv -fqa -anp -adK -aah -aah -aah -aah -abT -abT -abT -ahX -aey -aiP -aoK -apu -apu -apu -apu -apu -apu -apu -apu -aqb -ate -apu -bcd -apu -adr -avT -agb -agb -agc -agc -agi -agb -avU -aAE -aBO -aah -aah -aah -aah -aBO -aHc -aHv -aHv -aHv -aIh -aKn -aKV -aLC -aJI -aJI -aJI -aJI -aJI -aJI -aJI -aJI -aJI -aQy -aRF -aSn -aSF -aTl -aIh -aah -aah -aah -aah -aVn -aTZ -aEC -aVn -aXe -aXy -aXR -aYk -aTZ -aTZ -aTZ -aVn -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -baV -aoq -aoq -asS -"} -(70,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -iKy -iKy -iKy -iKy -iKy -iKy -iKy -iKy -fqa -fqa -fqa -fqa -fqa -fqa -anc -abT -abT -abT -abT -abT -abT -qor -qor -pyD -bbR -aez -aoL -apv -aqb -aqb -aqb -arw -ate -arX -apu -aqb -atf -apu -bcd -apu -adr -apu -agM -axg -axT -axT -azL -aAN -agM -aAF -aBO -aah -aah -aah -aah -aBO -aHc -aHv -aCj -aIL -aIh -aKo -aJI -aLC -aJI -aJI -aJI -aJI -aJI -aJI -aPv -aPV -aQu -aRa -aRG -aRY -aSG -aTm -aIh -aIh -aIh -aah -aah -aVn -aTZ -aWv -aVn -aFk -aTZ -aXS -aTZ -aTZ -aYk -aTZ -aVn -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -baV -aoq -aoq -asS -"} -(71,1,1) = {" -aaa -acN -aib -ajC -ajC -ajC -ajC -ajC -ajC -ajD -ajE -ajE -ajE -ajE -ajE -ajE -ajF -ajC -aaj -aib -aiT -ajG -ajG -ajG -ajG -ajH -ajI -ajI -ajI -akC -ajI -ajI -asH -ajI -asI -bbc -bbT -bbT -bbT -bbc -aup -sLi -ako -ahX -anQ -aeG -ahX -ahX -ahX -apu -apu -aqb -arM -arY -apu -aqb -atg -apu -bcd -apu -awB -bcd -agM -axh -axU -ayG -azM -aAO -agM -aAw -aBO -aah -aah -aah -aah -aBO -aBl -aeb -aCk -aCx -aJG -aKp -aKW -aLD -aJI -aJI -aJI -aJI -aJI -aJI -aPw -aPw -aPw -aRb -aRH -aRZ -aSH -aTn -aTN -aTN -aIh -aah -aah -aVn -aTZ -aED -aVn -aXe -aTZ -aHj -aYk -aTZ -aTZ -aTZ -aVn -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -baV -aoq -aoq -asS -"} -(72,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -abT -abT -abT -abT -abT -abT -abT -abT -abT -abT -abT -abT -abT -adt -adt -adt -adt -adt -abT -abT -abT -tCV -akt -ahX -aiS -aeH -aoM -apw -ahX -aqF -ari -aqb -aqb -arZ -asq -asK -apu -apu -apu -apu -avi -apu -agM -agM -axV -ayH -azN -agM -agM -aAw -aBO -aah -aah -aah -aah -aBO -aHf -aHv -aIf -aIN -aIh -aKq -aJI -aLC -acv -aMT -aMT -aMT -aMT -aMT -aPx -aPW -aPx -aRc -aRI -aSa -ajw -aRM -aPG -aTY -aIh -aah -aah -aVn -aTZ -aWx -aVn -aXg -aTZ -aHu -aYm -aYk -aTZ -aTZ -aVn -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -baV -aoq -aoq -asS -"} -(73,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adK -aah -aah -aah -aah -aah -aah -aah -abT -vCb -acS -acS -acS -adt -agd -bbs -bbC -qDR -eQz -eQz -abT -wzA -aku -ahX -anR -aeH -aoM -apw -ahX -aqF -ahX -apu -apu -apu -apu -asL -ath -axS -apu -bcz -azb -bcv -axS -agM -axW -ayI -azO -agM -aAo -aAE -aBO -aah -aah -aah -aah -aBO -aHf -aHv -aCl -aIO -aIh -aKq -aJI -aLC -aMm -aMU -aMv -aNY -aJI -aJI -aMU -aPX -aQv -aNa -aJI -aMm -aSI -aTo -aTO -aTO -aIh -aUT -aVn -aVn -aTZ -aEE -aVn -aVn -aXz -aVn -aVn -aVn -aVn -aVn -aVn -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aoq -aoq -asS -"} -(74,1,1) = {" -aaa -aaa -aaa -aaa -aab -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aad -adK -adK -aad -aad -aad -aaq -aaq -aaq -aaq -aah -aah -aah -aah -abT -abH -acX -acX -adL -adt -bbg -bbu -bbD -adt -eQz -eQz -abT -tCV -akt -ahX -anS -aeK -aoN -ahX -ahX -ahX -ahX -aah -aah -aah -apu -asL -apu -axS -apu -bcA -axS -apu -apu -agM -axX -ayG -azP -agM -aAp -aAK -aBO -aah -aah -aah -aah -aBO -aHf -aHv -aIh -aIh -aIh -aIh -aIh -aLC -aMm -aMV -aNE -aNZ -aNZ -aNZ -aNZ -aNE -aQw -aNa -aJI -aSb -aMV -aTp -aIh -aIh -aIh -aTZ -aTZ -aVI -aTZ -aTZ -aTZ -aXh -aTZ -aHx -aTZ -aTZ -aTZ -aZv -aVn -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aoq -aoq -asS -"} -(75,1,1) = {" -aac -aaf -aaf -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -akK -akK -aae -aaf -aai -aaq -aaz -aaM -aaq -aef -aef -aef -aef -abT -acQ -adl -ado -aco -adt -bbh -bbv -bbE -adt -eQz -eQz -abT -tCV -ahs -ahZ -aiV -aaQ -aeO -aoO -apy -aqG -ahX -aah -aah -aah -apu -asL -apu -axS -apu -bcC -axS -apu -bcd -agM -axY -ayG -azQ -agM -aAq -aAE -aBO -aah -aah -aah -aah -aBO -aHf -aHw -aIh -aIP -aJH -aKr -aKX -aLE -aMn -aMW -aNF -aOa -aOy -aOU -aOU -aNZ -aQx -aRd -aOB -aRH -aSJ -aTn -aTP -aTP -aIh -aTZ -aWy -aTZ -aTZ -aWy -aTZ -aXi -aTZ -aYm -aHy -aYF -aTZ -aZv -aVn -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baW -aaa -aaa -aaa -"} -(76,1,1) = {" -aqR -aaf -aaf -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaf -aak -aaq -aaA -aaA -aaq -erc -dxY -ads -aeg -aef -aef -aef -aef -ajc -adt -bbi -adt -bbF -adt -abT -abT -abT -tCV -ahs -ahX -anT -aeP -ahX -apx -aqc -aqH -ahX -aah -aah -aah -apu -asL -ati -apu -apu -apu -avO -agM -agM -agM -axZ -ayJ -azR -agM -aAr -aAE -aBO -aah -aah -aah -aah -aBO -aHf -aBH -aIh -aIQ -aJI -aJI -aKY -aLF -aMo -aMX -aNG -aOb -aOz -aOV -aPy -aNZ -aQy -aNa -aJI -aSc -ajx -aRM -aPG -aTY -aIh -aWy -aTZ -aVn -aVn -aVn -aVn -aVn -aVn -aVn -aVn -aYG -aVn -aVn -aVn -aYd -aYd -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aaa -"} -(77,1,1) = {" -aqR -aaf -aaf -aaf -aaf -aaf -aaf -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaf -aal -aas -aaB -aaN -hYh -abZ -acy -adv -aeh -aeN -afI -aBx -aCq -nDD -jPk -lpK -lDW -hPU -afC -lDW -afR -lDW -hQP -anv -aia -aiX -aeX -ahX -ahX -ahX -ahX -ahX -aah -aah -aah -apu -asL -atj -atL -atL -atL -atL -agM -ahc -ahu -aya -ayG -azS -aAP -aBO -aCA -aBO -aBO -aBO -aBO -aBO -aBO -aBm -aBI -aIh -aIR -aJJ -aKs -aKZ -aLG -aMp -aMq -aMq -aOc -aJI -aJI -aJI -aNZ -aQy -aNa -aJI -aMm -aSK -aTo -aTQ -aTQ -aIh -aTZ -aTZ -aVn -aVZ -aWz -aWQ -aXj -aXA -aXX -aYo -aHY -aXk -aZw -aWc -aUF -bas -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(78,1,1) = {" -aqR -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aae -aae -aae -aae -aae -aae -aae -aaf -aaf -aat -aaC -aaP -hpB -aca -acB -adx -aes -aeQ -afJ -aBy -aef -abT -abT -aeA -alX -amq -amM -cGJ -vHW -vHW -anp -abT -ahX -aiY -afa -ahX -aah -agM -agM -agM -aah -aah -aah -apu -asL -apu -agM -agM -atL -atL -agM -agM -agM -ayb -ayG -rYl -aAQ -aAt -aCB -aDj -aAT -aAT -aBf -aFM -aBj -aBr -aBK -aIh -aIS -aJK -aKt -aLa -aLH -aMp -aMY -aNH -aOd -aJI -aJI -aMU -aNZ -aQz -aNa -aJI -aSb -aMV -aTq -aIh -aIh -aIh -aTZ -aTZ -aVn -aWa -aWA -aWA -aWA -aGu -aXY -aXY -aYI -aIY -aXY -aLf -aUU -aYd -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(79,1,1) = {" -aqR -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aam -aaq -aAB -aAJ -aaq -aef -aef -aef -aef -aeS -afM -aBz -aef -acg -abT -aeB -afd -adp -tEo -ndH -agH -bbe -ahB -bcS -ahX -aiZ -afc -ahX -aah -agM -ahc -agM -aah -aah -aah -apu -asL -apu -ahc -agM -bcp -atL -atL -atL -atj -ayc -ayG -dCc -aAR -aBQ -aAL -aBQ -aBQ -aAU -aFl -aFN -ohi -ohi -loc -aec -aIT -aJL -aKu -aJI -aJI -aMq -aMZ -aNI -aJI -aJI -aJI -aPz -aNE -aQA -aMY -aOB -aRH -aSL -aTn -aTR -aTR -aIh -aUV -aTZ -aVn -abz -aWB -aWS -aWB -aXC -aWS -aWS -aWA -aXk -aJE -aLw -aZX -bas -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(80,1,1) = {" -aqR -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aAD -aAD -aAD -aAD -aAI -aAI -aAI -aef -aeZ -afN -aBA -aCr -aCr -aCr -aCr -aCr -aGa -aGa -aGa -aHV -aGa -aGa -aGa -agM -aja -afh -agM -agM -agM -aqI -agM -agM -agM -asa -agM -asM -agM -aqI -agM -agM -agM -agM -agM -agM -abc -sQB -byP -agM -aBO -aBO -aBO -aBO -aEz -aFl -aBO -aBO -aBO -aHC -aIh -aIU -aJM -aKv -aLb -aLI -aMr -aNa -aJI -aJI -aJI -aJI -aPA -aNZ -aQx -aNa -aJI -aSd -ajy -aRM -aPG -aTY -aIh -aTZ -aTZ -aVn -aWb -aWC -aWC -aWC -aGR -aYa -aYp -aWA -aXk -aWA -aWA -aYd -aYd -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(81,1,1) = {" -aqR -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aAD -aAI -aAI -aAI -aAI -aAI -aAI -aef -aeS -afO -aBB -aCr -aDa -aDU -aEj -aCr -aGb -aGK -aHr -aIq -aJU -aLt -aGa -anD -anU -afp -aoP -apz -aqd -aqJ -arf -arx -arN -aqd -asr -asN -atk -atM -aus -auN -avm -avV -jDg -wUW -abh -abk -osh -agM -aah -aah -aah -aBO -aEw -aFl -aBO -aah -aBO -aHC -aIh -aIV -aJN -aJI -aJI -aJI -aMs -aNa -aJI -aJI -aJI -aJI -aJI -aNZ -aQy -aNa -aJI -aMm -aSM -aTo -aTS -aTS -aIh -aTZ -aEx -aVn -aWc -aWc -aWc -aWA -aHd -aYb -aYb -aHZ -aHZ -aYb -aYb -aZY -aYd -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(82,1,1) = {" -aqR -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aAD -aAI -aAI -aAI -aAI -aAI -aAI -aef -aeS -afO -aBC -aCr -aDb -aDV -aEk -aCr -aGc -aGL -aHs -aIs -aKb -aLu -aGa -aic -anV -aoh -aoQ -aoQ -aoQ -aoQ -aoQ -aoQ -aoQ -asb -aoQ -aoQ -aoQ -aoQ -aoQ -aoQ -aoQ -aoQ -xAT -aoQ -tvk -abl -ghr -agM -aah -aah -aah -aBO -aAV -aFl -aBO -aah -aBO -aHC -aIh -aIW -aJM -aJI -aLc -aJI -aMt -aNb -aNJ -aOe -aOA -aOe -aPB -aNZ -aQy -aNa -aJI -aMm -aSN -aOf -aIh -aIh -aIh -aTZ -aEy -aVn -aWd -aWd -aWc -aXk -aXG -aWA -aXk -aXk -aIZ -aWA -aWA -aZZ -aYd -aYd -aYd -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(83,1,1) = {" -aqR -aaf -aaf -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaf -aag -aaf -aaf -aAD -aAI -aAI -aAI -aAI -aAI -aAI -aef -afi -afQ -bca -aCr -aDs -aDW -aEl -aFc -aGe -aGM -aHz -aIA -aKc -aLZ -baX -aid -goJ -aoi -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoi -awH -oQm -gVe -lNt -mon -agM -aah -aah -aah -aBO -aAY -aFl -aBO -aah -aBO -aHC -aIh -aIX -aJO -aKw -aLd -aLJ -aMr -aNc -aNK -aOf -aOf -aOf -aOf -aNZ -aQB -aRe -aRJ -aSe -aSO -aTr -aer -aTZ -aTZ -aTZ -aTZ -aVn -aWe -aWd -aWc -aWA -aXG -aXk -aWA -aWA -aWA -aWA -aXk -aWc -aWc -aWc -bas -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(84,1,1) = {" -aqR -aaf -aaf -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaf -aaf -aaf -aao -aao -aao -aao -aao -aao -aao -aao -aao -gJK -afO -aBE -aCr -aDt -aEd -aEo -aFd -aGf -aGN -aHA -aJj -aKd -aMe -aKd -aie -anW -aoj -aoR -apA -apA -apA -aoR -ary -ary -ary -ary -ary -aoR -apA -apA -apA -aoR -aoj -awH -axk -agM -aqM -agM -agM -agM -aah -aah -aBO -aEz -aFl -aBO -aah -aBO -aHD -aIh -aIh -aIh -aIh -aIh -aJI -aMs -aNc -aNE -aNZ -aNZ -aNZ -aNZ -aNE -aQC -aNa -aJI -aSb -aQy -aTs -aIh -aUa -aDR -aTZ -aTZ -aVn -aWd -aWd -aWT -aXl -aXH -aYc -aYq -aYL -aeI -aKg -aKg -baa -bat -aWB -bas -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(85,1,1) = {" -aaa -aaa -aaa -aaa -aab -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aau -aaF -aaS -abd -acd -acE -adC -aao -bcc -afS -aBF -aCL -aeC -aEf -aEG -aCr -aGg -aGN -aHF -aJk -aKe -aML -aGa -aif -anW -aoj -aoS -apB -aqe -aqe -aqe -aqe -aqe -aqe -aqe -aqe -aqe -aqe -aqe -auO -aoS -aoj -awH -axl -agM -ahc -agM -aAS -agM -aah -aah -aBO -aEz -aFn -aBO -aah -aBO -aBL -aBb -aCy -aIh -aKq -aJI -aJI -aMs -aNd -aNL -aOg -aOB -aOB -aPC -aPY -aOg -aRf -aRK -aMm -aQy -aJI -aIh -aUb -aUb -aUb -aUb -aUb -aUb -aUb -aUb -aXm -aXI -aYd -aYd -aYM -aYd -aYd -aLL -bab -bau -aWB -aYd -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(86,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aap -aav -aaG -aaX -abe -acf -acH -adD -aao -afj -age -aBB -aCr -aDt -aEg -aEU -aCr -aGh -aGO -aHK -aJl -aHK -aOS -aGa -bbm -anW -aoj -aoS -apC -aqf -aqK -aqf -aqf -aqf -aqf -aqf -aqf -aqf -aqK -aqf -arg -aoS -aoj -awH -axm -ayh -ayh -ayh -ayh -ayh -ayh -ayh -ayh -aAZ -aFl -aBO -aah -aBO -aBQ -aCp -aCz -aIh -aKq -aJI -aJI -aMs -aJI -aMq -aJI -aJI -aJI -aMq -aJI -aJI -aJI -aMq -aMm -aRF -aTt -aIh -aUc -aUG -aUW -aUW -aUW -aWf -aUc -aUb -aFm -aXJ -aYd -aYr -aYN -aZh -aYd -aZI -aWc -aWS -aWw -bas -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(87,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aap -aaw -aaH -aaY -abi -ach -acL -axa -aev -afk -agg -aBB -aCr -aDB -aEh -aDC -aCr -aGi -aGP -aHM -aJt -aKf -aQE -aGa -bbk -anW -aoj -aoS -apC -aqf -aqf -aqf -aqg -aqg -aqg -aqg -aqg -aqf -aqf -aqf -arg -aoS -aoj -awH -axm -ayh -ayQ -azZ -hmx -aBR -aCD -aDl -ayh -aBa -aFl -aBO -aah -aBO -aBO -aEz -aHD -aIh -aKx -aKx -aJI -aMu -aNe -aMr -aJI -aOC -aNe -aPD -aPZ -aPZ -aPZ -ajk -aSf -aSP -aTu -aIh -aUc -aUc -aUc -aUc -aUc -aUc -aUc -aUb -aXu -aHe -aYd -aYs -aYO -aZi -aYd -aWA -aVh -aWc -aWc -bas -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(88,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aap -aax -aaK -aaK -abo -aaK -aaK -adP -aao -cPX -afO -aBB -aCr -dYd -aEh -aDC -aCr -aGj -aGQ -aGj -aGj -aKG -aGj -aGj -aii -anW -aoj -aoS -apC -aqf -aqf -arg -arz -arz -asc -arz -arz -apC -aqf -aqf -arg -aoS -aoj -awH -axn -ayh -ayR -iwE -efV -aBS -aCE -aDm -aDS -aBb -aBg -aBO -aah -aah -aBO -aEz -aHC -aIh -aKy -aLe -aLP -aMv -aNf -aNM -ajj -aOD -aOW -aPE -aOW -aQD -aRg -aRL -ajr -aSQ -aMv -aIh -aUc -aUH -aUX -aUX -aUX -aWg -aUc -aUb -aXr -aXJ -aYd -aYd -aYd -aYd -aYd -aYd -aYd -aYd -aYd -aYd -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(89,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aay -aaL -aaZ -adb -acn -awy -adQ -aao -yaU -afO -aBB -aCr -aDC -aEh -aDt -aCr -aGk -aDA -aHQ -aJy -aKI -aRR -aGj -bbl -anX -aoj -aoS -apC -aqf -aqf -arg -arA -arz -aoR -arz -asO -apC -aqf -aqf -arg -aoS -aoj -awI -axo -ayh -ayS -iwE -nmD -aBT -aCF -aDn -ayh -aBc -aFl -aBO -aah -aah -aBO -aCu -aHC -aIh -aIh -aIh -aIh -aMw -aNg -aNN -aOh -aOE -aNg -aPF -aOh -aMw -aNg -aRM -aSg -aSR -aTv -aIh -aUd -aUI -aUb -aUb -aUb -aWh -aWD -aUb -aXr -aXJ -aYe -bad -aId -aZj -aZz -aNT -bad -bad -aWP -baR -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(90,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aao -aao -abY -aao -aao -aao -aao -yaU -afO -aBB -aCr -aDC -aEh -aEV -aFt -aGl -aGS -aHR -aJz -aKO -aTT -baY -bbm -anW -aoj -aoS -apC -aqf -aqf -arg -arz -arz -asd -arz -arz -apC -aqf -aqf -arg -aoS -aoj -awH -axp -ayh -ayT -iwE -cXW -aBT -aCG -aDo -ayh -aBd -aFl -aBO -aah -aah -aBO -aIk -aHC -aBO -aKz -aIa -aIh -aIh -aNh -aNO -aOi -aIh -aOX -aPG -aQa -aIh -aRh -aPG -aSh -aIh -aIh -aIh -aUe -aUG -aUW -aUW -aUW -aWf -aWE -aUb -aXt -aXM -aYf -aYu -aIe -aJa -aZA -aZK -aVl -bad -aWR -baR -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(91,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aeU -atc -awx -aeU -aAI -aAI -aef -yaU -afO -aBB -aCr -aDD -aEh -aDD -aCr -aGr -aGT -aHS -aJA -aKP -aVY -bba -afK -anW -aoj -aoS -apC -aqf -aqf -aqf -aqe -aqe -aqe -aqe -aqe -aqf -aqf -aqf -arg -aoS -aoj -awH -axq -ayh -ayU -gxa -qWk -ayh -ayh -ayh -ayh -aBe -aFl -aBO -aah -aah -aBO -aBO -aJb -aBO -aIa -aDk -aDI -aIh -aNh -aNP -aOi -aIh -aOX -aPH -aQa -aIh -aRh -aPH -aSh -aIh -aTw -aNE -aUe -aUc -aUc -aUc -aUc -aUc -aWE -aUb -aXr -aXP -aYe -aYe -aYR -aYe -aYe -aZL -aVm -aVW -baK -aYe -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(92,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aeU -atq -aww -aeU -aAI -aAI -aef -afl -agj -aBG -aCr -aDE -aEi -aEW -aCr -aGs -aGU -aHT -aJB -aKQ -aXQ -aGj -aCN -anW -aoj -aoS -apC -aqf -aqK -aqf -aqf -aqf -aqf -aqf -aqf -aqf -aqK -aqf -arg -aoS -aoj -awH -axm -ayi -ayV -fyp -huE -aBU -aCH -aDp -ayh -aBO -aFp -aBO -aGt -aGt -agM -aIl -aJc -agM -agM -aLg -ajl -ajl -ajl -ajl -anm -anm -anm -anm -ann -ann -ann -ann -anE -anE -anE -aSi -aUe -aUH -aUX -aUX -aUX -aWg -aWE -aUb -aXr -aXJ -aYe -aYv -aIg -aZl -aYe -aUE -aZz -aZz -aZz -baR -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(93,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -aan -aan -aan -aan -aan -atI -awz -aeU -aeU -aeU -aeU -aBD -afO -aBB -aCr -aCr -aCr -aCr -aCr -aGj -aGj -aGj -aGj -aGj -aGj -aGj -bbp -anW -aoj -aoS -apD -aqg -aqg -aqg -aqg -aqg -aqg -aqg -aqg -aqg -aqg -aqg -auP -aoS -aoj -awH -axm -ayh -ayW -eQT -niz -aBV -aCI -aDq -ayh -aCJ -aFq -aCJ -aBk -aCJ -agM -ayG -aJd -ayG -aKA -aLg -aLM -aMx -aLM -aLg -aOk -aOF -aOk -aOj -aQc -aQF -aQc -aQb -aSj -aSS -aSj -aSi -aUf -aUI -aUb -aUb -aUb -aWh -aWF -aUb -aFo -aXJ -aYe -aHB -aYT -aZm -aYe -aZN -aVo -aVX -bad -baR -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(94,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -aaV -aba -acO -adw -aan -atJ -awA -aeU -acZ -ade -aeU -jQL -amw -aBW -aCM -aDF -aCM -lUk -aCM -aCM -aCM -aCM -aJC -qWW -aZg -aef -bbq -anW -aoj -aoR -apA -apA -apA -aoR -ary -ary -ary -ary -ary -aoR -apA -apA -apA -aoR -aoj -awH -axm -ayh -ayh -aAf -cpp -ayh -ayh -ayh -ayh -aCJ -aFr -aCJ -aCJ -aCJ -agM -aeM -aJd -ayG -aKA -aLg -aLM -aLM -aLM -aLg -aOk -aOk -aOk -aOj -aQc -aQc -aQc -aQb -aSj -aSj -aSj -aSi -aUe -aUG -aUW -aUW -aUW -aWf -aWE -aUb -aXr -aXJ -aYe -aYe -aYe -aYe -aYe -aYe -aYe -aYe -aYe -aYe -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(95,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -abf -acl -acR -abP -aeY -atN -adX -adY -awY -adR -adU -afo -aem -afF -aBX -aDG -aBX -aBX -aFu -aGv -aBX -aBX -aJS -aKR -aKR -bbb -agf -anW -aoi -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoi -awH -axr -fAW -kKl -xzn -ldI -agM -aCJ -aCJ -aCJ -aCJ -aFs -aCJ -aCJ -aCJ -agM -ayG -aJe -aJP -aKB -aLg -aLM -aLM -aLM -aLg -aOk -aOk -aOk -aOj -aQc -aQc -aQc -aQb -aSj -aSj -aSj -aSi -aUg -aUJ -aUJ -aVq -aVJ -aVJ -aWG -aUb -aXr -aXJ -aYg -aYx -aIi -aJu -aZQ -aZO -bah -aWu -aXf -baS -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(96,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -abj -acm -acU -adA -aan -aBn -lbu -axL -adc -adS -aeU -afs -aeD -aCg -mGH -aDH -mGH -aEX -aFv -aGw -aGV -aHU -aJT -tRA -igw -bbf -ago -anY -aok -aok -aok -aok -aok -aok -aok -aok -ase -aok -aok -aok -sEz -aut -aut -avn -avW -awJ -avW -kgk -mSz -qhq -oib -agM -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -agM -aIm -aJf -aJQ -aKC -aLg -aLM -aLM -aLM -aLg -aOk -aOk -aOk -aOj -aQc -aQc -aQc -aQb -aSj -aSj -aSj -aSi -aUc -aUc -aUc -aVr -aUc -aUc -aUc -aUb -aXt -aXO -aYh -aHE -aIj -aZo -aZC -aZC -aVp -aWu -aZQ -baS -baU -baU -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(97,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -aan -abp -abq -acY -adB -aan -atP -awE -aeU -aeU -aeU -aeU -aef -aef -afE -aef -aef -aef -aEY -aFO -aGw -aHh -aef -aef -aef -aef -aef -bbt -anZ -aol -aoT -apE -aqh -aqL -doa -aqL -ajA -asf -ass -mGP -atn -cHW -auu -auQ -avo -avX -awK -aqh -vfy -qwm -ayG -qRI -agM -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -agM -aIn -aJg -aJR -aKD -aLg -aLM -aLM -aLM -aLg -aOk -aOk -aOk -aOj -aQc -aQc -aQc -aQb -aSj -aSj -aSj -aSi -aUb -aUb -aUb -aVs -aUb -aUb -aUb -aUb -aXu -aXJ -aYg -aYg -aIE -aYg -aYg -aZP -baj -baA -baM -aYg -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(98,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -aaD -abq -acq -acY -adE -aan -uHS -awF -axM -aeU -aah -aah -aah -aah -akA -aAG -aah -aef -aEZ -aFP -aGw -aHi -aef -aah -aah -aah -agM -agM -aoa -agM -agM -agM -agM -aqM -agM -aqM -agM -asg -ash -uxF -ash -kMG -ash -auR -avp -auR -awL -abx -awN -bPt -oVr -mrR -agM -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -agM -aIo -aJf -aJQ -aKE -aLg -aLM -aLM -aLM -aLg -aOk -aOk -aOk -aOj -aQc -aQc -aQc -aQb -aSj -aSj -aSj -aSi -aUh -aUK -aUY -aVt -aVK -aWi -aWH -aUb -aXv -aXJ -aYg -aYz -aIF -aZp -aYg -aZQ -bah -bah -aXn -baS -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(99,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adK -aad -aad -aar -aaE -abr -abr -adf -adT -afb -atO -awC -axN -aeU -aah -aah -aah -aah -akA -aAG -aah -aef -aFa -aFQ -aGw -aHk -aef -aah -aah -aah -ahx -anI -aob -aom -ahx -guV -apF -ahc -apF -nKz -apF -ash -ast -asU -ato -evF -ast -auR -avq -anH -awM -axs -awN -azd -ayG -jnj -agM -cOq -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aBs -agM -aEH -aJh -aJQ -aKF -aLg -aLN -aMy -aNi -aLg -aOl -aOG -aOY -aOj -aQd -aQG -aRi -aQb -aSk -aST -aTx -aSi -aUi -aUL -aUZ -aVu -aVL -aWj -aWI -aUb -aXr -aXJ -aYg -aHO -aYY -aZq -aYg -aZQ -bal -baB -bah -baS -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(100,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -abL -abL -abL -abL -aea -afb -atO -awC -axO -aeU -aah -aah -aah -aah -anF -aAG -aah -aef -aFb -aFZ -aGJ -aHq -aef -aah -aah -aah -ahx -ait -aoc -aon -aoU -apG -apF -aqN -apF -aqN -apF -ash -ast -asU -atp -hoH -ast -auR -avr -avZ -awN -axt -awN -azc -ayG -uEK -agM -agM -agM -aDT -aEF -agM -agM -agM -agM -agM -aIp -aJi -agM -agM -aLg -aLO -aMz -aNj -aLg -aOm -aOH -aOZ -aOj -aQe -aQH -aRj -aQb -aSl -aSU -aTy -aSi -aUj -aUM -aVa -aVx -aVM -aWk -aWJ -aUb -aXr -aXJ -aYg -aYg -aYg -aYg -aYg -aYg -aYg -aYg -aYg -aYg -baU -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(101,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aaJ -abU -acC -abL -aei -afb -atO -awG -aed -aeU -aah -aah -aah -aah -akA -aAG -aah -aef -aef -aef -aef -aef -aef -aah -aah -aah -ahx -anJ -aod -aoo -ahx -aaW -aqi -aqO -mRY -aql -aql -ash -asu -asU -qOA -uuu -ast -auR -avs -awa -awN -axt -awN -azd -ayJ -mZO -agM -kbZ -cqZ -xzn -lQQ -vHP -bMP -eUS -axi -mCe -xzn -abb -rxq -aMc -aLg -aLg -aLg -aNk -aLg -aOj -aOj -aPa -aOj -aQb -aQb -aRk -aQb -aSi -aSi -aTz -aSi -aUb -aUb -aUb -aVw -aUb -aUb -aUb -aUb -aXr -aXP -aYi -aYB -aIH -aJw -aZD -aZR -baD -baD -baO -baT -baU -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(102,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aaO -abV -acF -abL -aek -afb -atO -awz -aeU -aeU -axP -axP -axP -axP -akA -aAI -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -ahx -ahx -ahx -ahx -ahx -apF -apF -aqP -apF -apF -apF -ash -asv -asU -atr -atR -auv -auR -avt -awb -awN -abA -auR -aze -ayG -oKY -qKn -sHO -uKS -ayG -ayG -ayG -ayG -ayG -ayG -ayG -ayG -aJg -nsp -aKH -aLh -aNQ -aMA -aNl -aOT -aOn -aOI -aPb -aPI -aQf -aQI -aRl -aRN -aSm -aOI -aTA -aTU -aUk -aUN -aVb -aWW -aVN -aWl -aWK -aWU -aXw -aXO -aYj -aHW -aII -aJx -aKS -aKS -aVG -aZD -baP -baT -baU -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(103,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -aaR -abL -abL -abL -ael -aan -atQ -awV -axQ -adZ -ayB -ayZ -aAc -aAi -asT -aAI -adK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -apF -aqP -apF -arL -arO -asi -asw -asw -ats -atS -auw -auR -avu -awc -awN -axt -aym -azf -ayG -byn -uUP -tVd -eow -kAG -rZZ -ghg -wxa -glc -glc -glc -hTz -rVb -kPT -bbn -aLi -aLQ -aMB -aNm -aNR -aOo -aOJ -aPc -aPJ -aQg -aQJ -aNm -aRO -aVv -aOJ -aNm -aTV -aUl -aUO -aVc -aVy -aVO -aWm -aWL -aVn -aXP -aXP -aYi -aYi -aZb -aYi -aYi -aZS -bao -baC -baQ -aYi -baU -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(104,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adK -aad -aad -aan -aan -abX -acG -abX -aan -aan -acP -awW -axR -aee -ayC -aza -aAd -axP -aAz -aAI -adK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -apF -aqQ -arl -ark -apF -ash -asx -asU -atp -atT -aux -auR -avv -awd -auR -awN -auR -azg -cWS -rRC -agM -aCO -aCO -aCO -aEI -aFw -aCO -aCO -aCO -aHG -aHG -aHG -aHG -aCO -aLj -aLj -aLj -aNn -aNS -aNS -aNS -aPd -aPK -aPK -aPK -aRm -aPK -aSo -aSo -aqS -aSo -aUm -aUm -aUq -aUr -xnn -aWn -aWn -aVn -aVn -aVn -aYi -aHX -aZc -aJD -aYi -aZD -aZD -baD -aZD -baT -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(105,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -acc -acI -adm -aan -aff -aff -awX -aff -aff -ayC -azE -axP -axP -axK -aAI -adK -aah -aah -aah -aah -aah -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aah -aah -aah -apF -aqP -arl -apF -apF -ash -ast -asU -att -atU -auy -auR -avw -awe -awO -axu -auR -azh -ayG -vDb -aBY -aCP -aDu -aDX -aEJ -aFx -sya -aGx -aHl -aDu -aDu -aDu -aDu -aCS -aLj -aLR -aMC -aNo -aNS -aOp -aOK -aPe -aPK -aQh -aQK -aRn -aPK -aSp -aSV -aTC -aSo -aUn -aUp -aVd -aVz -aUt -aWo -aWM -aWV -aVn -aHg -aYi -aYE -aIM -aZu -aYi -aZU -aVH -baE -baD -baT -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(106,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -ace -acK -adq -aan -aff -auq -ady -ayd -aff -ayY -azF -axP -aeF -axK -aAI -adK -aah -aah -aah -aah -aah -aaU -agQ -ahp -ahC -akI -anf -aaU -aah -aah -aah -apF -abQ -arj -apF -aah -ash -ast -asU -atu -asU -ast -auR -avx -awf -awf -axv -auR -azi -ayG -vDb -aBY -aCQ -aDu -aDu -aDu -aFy -aFR -aFR -aFR -aFR -aIr -aJm -aJV -aDu -aLj -aLS -aMD -aNp -aNS -aOq -aOL -aPf -aPK -aQi -aQL -aRo -aPK -aSq -aSW -aTD -aSo -acw -aVS -aVe -aVA -aVQ -bHR -aUP -bcT -aVn -anK -aYi -aYi -aYi -aYi -aYi -aYi -aYi -aYi -aYi -aYi -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(107,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -aan -aan -aan -aan -aff -aur -awZ -aye -aff -axP -axP -axP -aeJ -aAz -aAI -adK -aah -aah -aah -aah -aah -aaU -agS -ahq -ajP -akY -anq -aaU -aaU -aaU -aaU -aaU -abR -ark -apF -aah -ash -ast -asU -atv -asU -ast -auR -avy -awg -awP -axw -auR -azj -ayI -svZ -aBY -aCR -aDv -aDu -aEK -aFz -aEK -aEK -aEK -aDu -atm -aCQ -aJV -aDu -aLj -aLT -aME -aNq -aNS -aOr -aOM -aPg -aPK -aQj -aQM -aRp -aPK -aSr -aSX -aTE -aSo -acz -bcT -aVf -aVB -aVf -cwS -aUP -aWX -aUm -bcD -bcI -bcK -aUm -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(108,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aff -auo -adG -ayf -aff -aAI -aAI -aAD -afy -azT -aAa -adK -aah -aah -bbj -bbj -bbj -bbj -agT -ahr -ajR -alu -anr -abJ -abM -abJ -abJ -abO -abS -arC -apF -aah -ash -asy -asV -atw -atV -auz -auR -avz -awh -awQ -axx -auR -azk -ayG -tNJ -agM -aCS -aCO -aDY -aEL -aFA -aEL -aEL -aEL -aDu -aIt -aJn -aJV -aDu -aLj -aLU -aMF -aNr -aNS -aOs -aON -aPh -aPK -aQk -aQN -aRq -aPK -aSs -aSY -aTF -aSo -afZ -bcT -aVf -aVB -aVf -cwS -aUP -aWY -aUm -bcE -aUP -bcL -aUm -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(109,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aeE -afm -afm -axb -afm -afm -aeE -aeE -azV -azV -azV -aAb -adK -aah -bbj -bbj -bbI -bbM -bbj -ahg -ahz -ajZ -alD -anL -aaU -aaU -aaU -aaU -aaU -aql -arl -apF -aah -ash -ash -ash -ash -ash -ash -auR -auR -auR -auR -auR -ayn -azd -ayG -vDb -aAR -agM -aCO -aDZ -aEM -aFB -aFS -aEM -aHm -aDu -aIu -aJo -aDu -aKJ -aLj -aLV -aME -aNs -aNS -aOt -aOM -aPi -aPK -aQl -aQM -aRr -aPK -aSt -aSX -aTG -aSo -arm -bcT -aVf -aUs -aUu -iee -aVP -aWZ -bcj -bcF -aUP -bcM -aUm -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(110,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aeE -afn -avk -axc -ayg -ayE -azu -azH -azW -aAe -aeE -aAz -adK -aah -bbj -bbx -bbJ -bbV -bbj -ahk -ahA -ahk -ahA -aop -aaU -aah -aah -aah -apF -aql -arl -apF -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -agM -azl -iti -vDb -aBZ -agM -aCO -aEa -aEM -aFC -aFT -aGy -aHn -aDu -aIv -aDu -aCP -aDu -aLj -aLj -aMG -aLj -aNS -aNS -aOO -aNS -aPK -aPK -aQO -aPK -aPK -aSo -aSZ -aSo -aSo -arD -bcT -aVf -aVB -aVf -cwS -aUP -aXa -aUm -bcG -aUP -bcL -aUm -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(111,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aeE -afx -avl -axd -ayj -ayF -azy -azI -azX -aAg -aeE -aAz -adK -aah -bbj -bby -bbK -bbW -bbj -aaU -aaU -aaU -aaU -aBo -aaU -aah -aah -aah -apF -aql -arl -apF -aah -aah -aah -aah -atx -atx -atx -atx -atx -atx -atx -atx -atx -azm -mRF -bMs -atx -atx -aCO -aCO -acr -aFD -aFD -aFD -aCO -aeL -aIw -aDu -aCQ -aDu -aLj -aLW -aMH -aNt -aNS -aOu -aOP -aPj -aPK -aQm -aQP -aRs -aPK -aSu -aTa -aTH -aSo -aTB -bcm -aVg -aVC -aVR -laR -aWp -aXb -aUm -bcH -bcJ -bcN -aUm -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(112,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aeE -afB -avQ -axj -ayk -ayK -azv -azH -azY -aAh -aeE -aAz -adK -aAW -bbr -bbz -bbL -bbY -bbj -aAG -aAG -aAG -aAG -aBp -aAD -aah -aah -apF -apF -aql -nlo -apF -aah -aah -aah -aah -atx -atW -auA -auS -avA -atW -atx -axy -ayo -azn -bSx -raS -aCa -axy -atx -aEb -auB -aFE -aFU -aLK -act -aDu -aIx -aDu -aCR -aKK -aLj -aLX -aMI -aNu -aNS -aOv -aOQ -aPk -aPK -aQn -aQQ -aRt -aPK -aSv -aTb -aTI -aSo -aUo -aUQ -bHR -aUP -aVS -aga -aWN -aXc -aUm -aUm -aUm -aUm -aUm -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(113,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aeE -afD -avl -axF -ayl -avl -azw -aeE -aeE -aeE -aeE -aAA -aAH -aAX -bbj -bbA -bbj -bbj -bbj -aAG -aAG -aAG -aAI -aBp -aAD -aah -aah -apF -lry -aql -aql -apF -aah -aah -aah -aah -atx -afG -auB -auB -auB -aex -atx -axy -ayo -azn -auU -tLx -aCa -axy -atx -afY -auB -aFF -aFV -aGz -aCO -aHH -aIu -aDu -aDu -aDu -aLj -aLj -aLj -aLj -aNS -aNS -aNS -aNS -aPK -aPK -aPK -aPK -aPK -aSo -aSo -aSo -aSo -aUm -aUm -aVi -aVD -aVT -aUm -aUm -aUm -aUm -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(114,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aeE -afL -avR -axG -ayt -avl -azx -azH -azW -aAe -aeE -aAI -aAI -aAI -aAI -aBh -aBi -aBi -bHK -aBi -aBi -aBi -aBi -aBq -aAD -aah -aah -apF -aqk -aqj -aql -apF -aah -aah -aah -aah -atx -atX -auB -auT -avB -awi -atx -atx -atx -azo -qfJ -mOz -atx -atx -atx -aEc -aEN -aFG -aFV -aGA -aCO -aHI -aIy -aJp -aJW -aJW -aLk -aCP -aCO -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aUm -aVj -aVj -aVj -aUm -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(115,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aeE -agq -avS -axH -ayu -ayL -azz -azJ -azX -aAg -aeE -aAI -aAI -gYx -pdo -aAI -aAI -aAI -aAI -aAI -aAI -aAI -aAI -bbZ -aAD -aah -aah -apF -aql -aql -aql -apF -aah -aah -aah -aah -atx -atY -auB -auU -avC -auB -awR -axz -ayp -azp -mRF -rYL -ayp -aCT -aDw -auB -aEO -auU -aFW -auB -aCO -aCS -aIz -aJq -aJV -aDu -aLl -aJn -aCO -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(116,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ack -acM -acM -aen -aig -auL -xpP -ayv -ayM -bcf -azH -azY -aAh -aeE -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aah -aah -apF -apF -apF -apF -apF -aah -aah -aah -aah -atx -atZ -auC -auV -avD -awj -awj -awj -ayq -azq -jva -dZW -aCb -aCU -aCU -aCU -aEP -aFH -aFX -aGB -aCO -aHJ -aHJ -aHJ -aHJ -aHJ -aHJ -aHJ -aCO -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(117,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aeE -aeE -aeE -azH -ayw -aeE -aeE -aeE -aeE -aeE -aeE -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -atx -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -aGC -atx -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(118,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -naC -ajb -awu -lMK -ayx -ayN -azA -naC -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aah -aah -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -baU -aty -afH -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aty -atx -atx -atx -atx -aty -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(119,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -naC -amc -arB -arB -ayy -ayO -azB -naC -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -baU -atz -atA -atA -atA -atA -atA -atA -atA -auc -auc -auc -auc -atA -atA -auc -auc -auc -auc -atA -atA -auD -auc -auc -auc -auD -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(120,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -naC -amP -awv -awv -ayz -ayP -azC -naC -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aad -aad -atz -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(121,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aah -naC -aAC -avY -axJ -ayA -ayX -azD -naC -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aad -aad -aad -aad -atz -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aue -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(122,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -naC -naC -naC -naC -naC -naC -naC -naC -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -atz -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(123,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -atz -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(124,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -atz -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(125,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -atz -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(126,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -atz -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(127,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -atz -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(128,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -atz -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(129,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -atz -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(130,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -atz -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(131,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -atz -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(132,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -atz -atC -atC -aua -atC -atC -atC -aua -atC -atC -auf -aua -atC -atC -aua -atC -atC -atC -aua -atC -auf -atC -aua -atC -atC -atz -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(133,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aty -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -aty -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(134,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(135,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(136,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(137,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(138,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(139,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(140,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/unsimulated/wall/planetary/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aab" = ( +/obj/structure/sign/warning/bomb_range{ + name = "\improper MINING AREA - WATCH FOR BLASTING" + }, +/turf/unsimulated/wall/planetary/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aac" = ( +/obj/effect/map_effect/portal/master/side_a{ + portal_id = "surfacemine" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aad" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aae" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aaf" = ( +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aag" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aah" = ( +/turf/simulated/mineral, +/area/tether/surfacebase/outside/outside1) +"aai" = ( +/obj/machinery/camera/network/outside{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aaj" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aak" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aal" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aam" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aan" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/mentalhealth) +"aao" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/paramed) +"aap" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/paramed) +"aaq" = ( +/turf/simulated/wall, +/area/tether/surfacebase/lowernortheva) +"aar" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "psych_office" + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/mentalhealth) +"aas" = ( +/obj/effect/map_helper/airlock/door/ext_door, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "northciv_airlock_outer"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/lowernortheva) +"aat" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "northciv_airlock"; + pixel_x = 25; + pixel_y = 8 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "northciv_airlock_outer"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/lowernortheva) +"aau" = ( +/obj/machinery/suit_cycler/medical, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aav" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aax" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aay" = ( +/obj/structure/table/rack, +/obj/item/device/gps/medical{ + pixel_y = 3 + }, +/obj/item/device/gps/medical{ + pixel_x = -3 + }, +/obj/item/device/radio{ + pixel_x = 2 + }, +/obj/item/device/radio{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaz" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "northciv_airlock_scrubber" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/lowernortheva) +"aaA" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "northciv_airlock_pump" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/lowernortheva) +"aaB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernortheva) +"aaC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernortheva) +"aaD" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"aaE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"aaF" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/medical/emt, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/medical/emt, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaG" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/white, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"aaK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaL" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaM" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "northciv_airlock_scrubber" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/lowernortheva) +"aaN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernortheva) +"aaO" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"aaP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/embedded_controller/radio/airlock/phoron{ + id_tag = "northciv_airlock"; + pixel_x = 25; + pixel_y = -25 + }, +/obj/machinery/airlock_sensor/phoron{ + id_tag = "northciv_airlock_sensor"; + pixel_x = 59; + pixel_y = 11 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernortheva) +"aaQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aaR" = ( +/obj/structure/filingcabinet/medical{ + desc = "A large cabinet with hard copy medical records."; + name = "Medical Records" + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"aaS" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/medical/emt, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/medical/emt, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aaU" = ( +/turf/simulated/wall, +/area/maintenance/lower/trash_pit) +"aaV" = ( +/obj/structure/table/woodentable, +/obj/structure/plushie/ian{ + dir = 8; + pixel_y = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"aaW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/vacant_site) +"aaX" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaY" = ( +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaZ" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aba" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"abc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"abd" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/medical/equipped, +/obj/structure/fireaxecabinet{ + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"abe" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"abf" = ( +/obj/structure/table/woodentable, +/obj/item/toy/plushie/therapy/blue, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"abh" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"abi" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"abj" = ( +/obj/structure/table/woodentable, +/obj/random/plushie, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"abl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"abm" = ( +/turf/simulated/wall, +/area/rnd/hardstorage) +"abn" = ( +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"abo" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"abp" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abq" = ( +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abs" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"abt" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"abu" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"abv" = ( +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"abw" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"abx" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled{ + icon_state = "monotile" + }, +/area/security/checkpoint) +"aby" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"abz" = ( +/obj/structure/table/woodentable, +/obj/machinery/light_construct{ + dir = 1 + }, +/obj/item/glass_jar, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"abA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/security/checkpoint) +"abB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"abC" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet/crate, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/drinkbottle, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"abD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"abE" = ( +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"abF" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"abG" = ( +/obj/effect/floor_decal/rust, +/obj/random/cutout, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"abH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"abI" = ( +/obj/structure/closet/crate/plastic, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"abJ" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abK" = ( +/obj/machinery/door/airlock/glass{ + name = "Looking Glass" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_one) +"abL" = ( +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"abM" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abN" = ( +/turf/simulated/wall/r_wall, +/area/rnd/testingroom) +"abO" = ( +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abQ" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"abR" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"abS" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"abT" = ( +/turf/simulated/wall, +/area/maintenance/lower/mining_eva) +"abU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_y = 4 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"abV" = ( +/obj/effect/landmark/start{ + name = "Psychiatrist" + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"abW" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + name = "Research Testing Scrubber"; + use_power = 2 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"abX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "psych_birdcage" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/mentalhealth) +"abY" = ( +/obj/machinery/door/airlock/medical{ + name = "EMT Bay" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/paramed) +"abZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aca" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"acb" = ( +/turf/simulated/mineral, +/area/rnd/testingroom) +"acc" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/grass, +/area/tether/surfacebase/medical/mentalhealth) +"acd" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit{ + pixel_y = -5 + }, +/obj/item/device/suit_cooling_unit{ + pixel_y = -5 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"ace" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/grass, +/area/tether/surfacebase/medical/mentalhealth) +"acf" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"acg" = ( +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ach" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aci" = ( +/turf/simulated/mineral, +/area/storage/surface_eva/external) +"acj" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"ack" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + use_power = 1 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"acl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acn" = ( +/obj/structure/table/rack, +/obj/item/device/defib_kit/compact/loaded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aco" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"acp" = ( +/obj/structure/grille, +/obj/structure/railing, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "suckysucky"; + name = "Scrubber Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"acq" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acr" = ( +/obj/structure/table/marble, +/obj/machinery/door/window{ + dir = 8; + req_one_access = list(25) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"acs" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/medical/first_aid_west) +"act" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Tram Maintenance Access" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"acu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"acv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"acw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"acx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"acy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"acz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/loadout, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"acB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/vending/wallmed_airlock{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"acC" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/machinery/button/windowtint{ + id = "psych_office"; + pixel_x = 6; + pixel_y = 10; + range = 12 + }, +/obj/machinery/button/windowtint{ + id = "psych_office_inside"; + pixel_x = 6; + range = 12 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"acD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"acE" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"acF" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/med_data/laptop{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"acG" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Birdcage"; + req_one_access = list(64) + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"acH" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"acI" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/grass, +/area/tether/surfacebase/medical/mentalhealth) +"acJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"acK" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/tether/surfacebase/medical/mentalhealth) +"acL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"acM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"acN" = ( +/obj/structure/cable/ender{ + icon_state = "1-2"; + id = "surface-mining" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"acO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acP" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/medbay, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"acQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"acR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acS" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"acT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"acU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"acW" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"acX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"acY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acZ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"ada" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adb" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/paramed) +"adc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"add" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ade" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"adf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"adh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adl" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"adm" = ( +/obj/structure/bed/chair/bay/chair/padded/red/bignest{ + name = "Tweeter's Bed" + }, +/mob/living/simple_mob/animal/passive/bird/azure_tit/tweeter, +/turf/simulated/floor/grass, +/area/tether/surfacebase/medical/mentalhealth) +"adn" = ( +/turf/simulated/wall/r_wall, +/area/rnd/tankstorage) +"ado" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"adp" = ( +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"adq" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/tether/surfacebase/medical/mentalhealth) +"adr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"ads" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/lowernorthhall) +"adt" = ( +/turf/simulated/wall, +/area/maintenance/substation/cargostoresubstation) +"adu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"adw" = ( +/obj/structure/flora/pottedplant/fern, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"adx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"ady" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 8; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = 25; + req_access = list(39) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"adz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"adA" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -8; + pixel_y = -26 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"adB" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/anomaly_spectroscopy, +/obj/item/weapon/book/manual/anomaly_testing, +/obj/item/weapon/book/manual/materials_chemistry_analysis, +/obj/item/weapon/book/manual/resleeving, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"adC" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"adD" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"adE" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/standard_operating_procedure, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"adF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 8; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 24; + pixel_y = 25; + req_access = list(39) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"adH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adK" = ( +/turf/simulated/wall, +/area/tether/surfacebase/outside/outside1) +"adL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"adM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"adN" = ( +/obj/machinery/power/apc/high{ + dir = 4; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"adO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adP" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"adQ" = ( +/obj/structure/closet/secure_closet/paramedic, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"adR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"adS" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"adT" = ( +/obj/structure/flora/pottedplant/fern, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"adU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + name = "Mental Health"; + req_one_access = list() + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"adV" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"adW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay recovery room door."; + id = "Psych"; + name = "Exit Button"; + pixel_x = -26; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"adY" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "Psych"; + name = "Mental Health" + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"adZ" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"aea" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access = list(64); + req_one_access = list(5) + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"aeb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Atmospherics Substation" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + layer = 1; + name = "Atmospherics Lockdown"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aec" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Atmospherics"; + req_access = list(24) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + layer = 1; + name = "Atmospherics Lockdown"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aed" = ( +/obj/machinery/vending/medical{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"aee" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"aef" = ( +/turf/simulated/wall, +/area/tether/surfacebase/lowernorthhall) +"aeg" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/lowernorthhall) +"aeh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aei" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"aej" = ( +/obj/machinery/door/airlock/maintenance/engi{ + name = "Atmospherics"; + req_access = list(24) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + layer = 1; + name = "Atmospherics Lockdown"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aek" = ( +/obj/structure/bed/psych, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"ael" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/clipboard, +/obj/machinery/light, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"aem" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aen" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/wall/r_wall, +/area/medical/virology) +"aeo" = ( +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aep" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aeq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aer" = ( +/obj/machinery/door/airlock/maintenance/engi{ + name = "Atmospherics"; + req_access = list(24) + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + layer = 1; + name = "Atmospherics Lockdown"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aes" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/camera/network/cargo{ + dir = 8 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aet" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aeu" = ( +/obj/machinery/door/airlock/maintenance/engi{ + name = "Atmospherics"; + req_access = list(24) + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "atmoslockdown"; + layer = 1; + name = "Atmospherics Lockdown"; + opacity = 0; + open_layer = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aev" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + name = "EMT Bay" + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aew" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aex" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?"; + icon_state = "frame"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aey" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/tether/surfacebase/north_stairs_one) +"aez" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"aeB" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/tool, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"aeC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aeD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aeE" = ( +/turf/simulated/wall/r_wall, +/area/medical/virology) +"aeF" = ( +/obj/random/junk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aeG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeH" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like its set to the kek-centeral. I wonder what else is on?"; + icon_state = "frame"; + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aeJ" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 8 + }, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aeK" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeL" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like it's on MTV. Now you can't blame that demi-cowgirl for working her money maker. I wonder what else is on?"; + icon_state = "frame"; + pixel_y = 32 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aeM" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like it's on the fishing channel. I wonder what else is on?"; + icon_state = "frame"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aeN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aeO" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Secondary Janitorial Closet"; + req_access = list(26) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeQ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aeR" = ( +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"aeS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aeT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"aeU" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/lowerhall) +"aeV" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aeW" = ( +/turf/simulated/wall, +/area/storage/primary) +"aeX" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeY" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "mentaldoor"; + name = "Mental Health"; + req_access = list(64) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/mentalhealth) +"aeZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"afb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "psych_office_inside" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/mentalhealth) +"afc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"afd" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"afe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"aff" = ( +/turf/simulated/wall, +/area/medical/virologyaccess) +"afg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"afh" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "West Hallway" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor, +/area/tether/surfacebase/surface_one_hall) +"afi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afm" = ( +/turf/simulated/wall/r_wall, +/area/medical/virologyaccess) +"afn" = ( +/obj/machinery/disease2/diseaseanalyser, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"afo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"afq" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"afr" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/storage/primary) +"afs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aft" = ( +/obj/machinery/camera/network/civilian, +/obj/machinery/lapvend, +/turf/simulated/floor/tiled, +/area/storage/primary) +"afu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"afv" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/storage/primary) +"afw" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/alarm{ + pixel_y = 23 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"afx" = ( +/obj/machinery/computer/diseasesplicer, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"afy" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"afz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"afA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"afB" = ( +/obj/machinery/disease2/incubator, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"afC" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"afD" = ( +/obj/machinery/computer/centrifuge, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"afE" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/tether/surfacebase/lowernorthhall) +"afF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afG" = ( +/obj/structure/bed/chair, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"afH" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/tram) +"afI" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"afL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"afM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"afQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afR" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"afS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afT" = ( +/turf/simulated/floor/tiled, +/area/storage/primary) +"afU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"afV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/storage/primary) +"afW" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/storage/primary) +"afX" = ( +/obj/machinery/door/airlock/maintenance/rnd{ + name = "Research Maintenance Access"; + req_access = list(55) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/hardstorage) +"afY" = ( +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"afZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/loadout/overwear, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aga" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/obj/machinery/vending/coffee{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"agb" = ( +/turf/simulated/shuttle/wall/voidcraft/green{ + hard_corner = 1 + }, +/area/tether/elevator) +"agc" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/tether/elevator) +"agd" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "CargoShop Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"age" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"agf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"agg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"agh" = ( +/obj/turbolift_map_holder/tether{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/tether/elevator) +"agi" = ( +/obj/structure/sign/deck/first, +/turf/simulated/shuttle/wall/voidcraft/green{ + hard_corner = 1 + }, +/area/tether/elevator) +"agj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"agk" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"agl" = ( +/obj/machinery/atmospherics/unary/outlet_injector, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"agm" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"agn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"ago" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"agp" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/suspension_gen, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"agq" = ( +/obj/machinery/atmospherics/tvalve/bypass{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"agr" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"ags" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/obj/item/weapon/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"agt" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"agu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agv" = ( +/turf/simulated/wall/r_wall, +/area/rnd/chemistry_lab) +"agw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"agx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"agy" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"agz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agA" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agB" = ( +/obj/machinery/vending/tool{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Xenoarch Storage"; + req_access = list(65) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenoarch_storage) +"agD" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"agE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Research Hard Storage"; + req_access = list(47) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"agF" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"agG" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"agH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"agI" = ( +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/structure/reagent_dispensers/foam, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agK" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agL" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"agM" = ( +/turf/simulated/wall, +/area/tether/surfacebase/surface_one_hall) +"agN" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"agO" = ( +/obj/structure/table/glass, +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"agP" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gogogo"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"agQ" = ( +/obj/structure/catwalk, +/obj/random/cigarettes, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"agR" = ( +/obj/structure/table/glass, +/obj/item/weapon/tool/screwdriver, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"agS" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"agT" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"agU" = ( +/turf/simulated/wall, +/area/storage/surface_eva) +"agV" = ( +/obj/structure/closet/crate, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"agW" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"agX" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agY" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aha" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gogogo"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahb" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gogogo"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahc" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "atrium" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_one_hall) +"ahd" = ( +/obj/machinery/door/window/northleft{ + req_access = list(47) + }, +/obj/machinery/door/window/southleft{ + req_access = list(47) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gogogo"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahe" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gogogo"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahg" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahi" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/random/maintenance/clean, +/obj/item/clothing/mask/gas, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"ahj" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"ahk" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahl" = ( +/turf/simulated/wall, +/area/hallway/lower/first_west) +"ahm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/storage/primary) +"aho" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/primary) +"ahp" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/obj/random/tool, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahq" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahr" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahs" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"aht" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Chemical Research" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahu" = ( +/obj/structure/grille, +/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_one_hall) +"ahv" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahw" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahx" = ( +/turf/simulated/wall, +/area/tether/surfacebase/emergency_storage/atrium) +"ahy" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahA" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ahC" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"ahE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"ahF" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahI" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahJ" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahM" = ( +/obj/machinery/atm{ + pixel_y = 31 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahP" = ( +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahQ" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahR" = ( +/obj/machinery/camera/network/tether, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ahU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahX" = ( +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_one) +"ahY" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahZ" = ( +/obj/structure/sign/directions/cargo{ + dir = 4 + }, +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_one) +"aia" = ( +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_one) +"aib" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aic" = ( +/obj/machinery/atm{ + pixel_y = 31 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aid" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aie" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Cargo Shop"; + sortType = "Cargo Shop" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aif" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/tether, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aig" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/obj/machinery/smartfridge/secure/virology, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aih" = ( +/obj/machinery/button/remote/blast_door{ + id = "gogogo"; + name = "Test Chamber Blast Seal Control"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aii" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aij" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aik" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/electrical, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ail" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/voice, +/obj/item/device/radio/electropack, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aim" = ( +/obj/machinery/button/remote/blast_door{ + id = "suckysucky"; + name = "Scrubber Blast Door-Controller"; + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ain" = ( +/obj/machinery/chem_master{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aio" = ( +/obj/machinery/camera/network/research{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aip" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers, +/obj/item/clothing/glasses/science, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/item/weapon/storage/fancy/vials, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiq" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"air" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ais" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ait" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aiu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiv" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aix" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiy" = ( +/turf/simulated/wall, +/area/storage/surface_eva/external) +"aiz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"aiA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"aiB" = ( +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiC" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"aiD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aiE" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aiF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiG" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/assembly/infra, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiH" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiI" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/full{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiJ" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/obj/item/device/reagent_scanner, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiK" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiL" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiM" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aiO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aiP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "West Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor, +/area/tether/surfacebase/north_stairs_one) +"aiQ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/computer/area_atmos/tag, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiR" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + name = "Research Testing Scrubber" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiS" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aiT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"aiU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aiW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"aiX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aiY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aiZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aja" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/tether/surfacebase/surface_one_hall) +"ajb" = ( +/obj/machinery/computer/arcade{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ajc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/common{ + req_one_access = newlist() + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ajd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aje" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ajf" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + breach_detection = 0; + dir = 8; + pixel_x = 25; + rcon_setting = 3; + report_danger_level = 0 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"ajg" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"ajh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aji" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"ajj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"ajk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"ajl" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_7) +"ajm" = ( +/obj/machinery/vending/tool{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ajn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"ajo" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"ajp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ajq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ajr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"ajs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ajt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aju" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ajv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ajw" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/black/border, +/obj/machinery/atmospherics/binary/pump/high_power/on, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"ajx" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/obj/machinery/atmospherics/binary/pump/high_power/on, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"ajy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/atmospherics/binary/pump/high_power/on, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"ajz" = ( +/obj/structure/table/woodentable, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"ajA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ajB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ajC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"ajD" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"ajE" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"ajF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/railing, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"ajG" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ajH" = ( +/obj/structure/cable/heavyduty, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ajI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ajJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ajK" = ( +/mob/living/simple_mob/animal/passive/gaslamp, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside1) +"ajL" = ( +/turf/simulated/wall, +/area/maintenance/lower/public_garden_maintenence) +"ajM" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"ajN" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "holodeck"; + name = "Holodeck Privacy Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "holodeck" + }, +/turf/simulated/floor/plating, +/area/holodeck_control) +"ajO" = ( +/turf/simulated/wall, +/area/holodeck_control) +"ajP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ajQ" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"ajR" = ( +/obj/effect/floor_decal/rust, +/obj/random/cigarettes, +/obj/random/junk, +/obj/random/junk, +/obj/random/tool, +/obj/effect/landmark/teleplumb_exit, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ajS" = ( +/turf/simulated/wall, +/area/tether/surfacebase/public_garden_one) +"ajT" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"ajU" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"ajV" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "holodeck"; + name = "Holodeck Privacy Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "holodeck" + }, +/turf/simulated/floor/plating, +/area/holodeck_control) +"ajW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/research, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ajX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ajY" = ( +/turf/simulated/floor/plating, +/area/tether/surfacebase/public_garden_one) +"ajZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"aka" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"akb" = ( +/obj/structure/grille, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_one) +"akc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"akd" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ake" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"akf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"akg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"akh" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "atrium" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_one) +"aki" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"akj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"akk" = ( +/obj/structure/grille, +/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_one) +"akl" = ( +/obj/random/junk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"akm" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"akn" = ( +/turf/simulated/mineral, +/area/maintenance/lower/public_garden_maintenence) +"ako" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"akp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"akq" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole/right, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"akr" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"aks" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"akt" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"aku" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"akv" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"akw" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"akx" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"aky" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"akz" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"akA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"akB" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/security/weaponsrange) +"akC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"akD" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akG" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"akH" = ( +/obj/machinery/camera/network/outside{ + dir = 9 + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/holodeck_control) +"akI" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"akJ" = ( +/obj/structure/table/rack, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"akK" = ( +/turf/simulated/wall, +/area/tether/surfacebase/lowernortheva/external) +"akL" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"akM" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akN" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akO" = ( +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/machinery/camera/network/civilian, +/obj/structure/table/standard, +/obj/random/soap, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/holodeck_control) +"akP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/machinery/computer/timeclock/premade/north, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akR" = ( +/turf/simulated/wall, +/area/tether/surfacebase/public_garden) +"akS" = ( +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/tether/surfacebase/public_garden) +"akT" = ( +/obj/structure/sign/poster, +/turf/simulated/wall, +/area/tether/surfacebase/public_garden) +"akU" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akV" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"akW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akX" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akY" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"akZ" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"ala" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alb" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alc" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/tether/surfacebase/public_garden_one) +"ald" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"ale" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alh" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden) +"ali" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alj" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"all" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"aln" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Public Gardens" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monofloor, +/area/tether/surfacebase/public_garden_one) +"alo" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"als" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden) +"alt" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alu" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"alv" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"aly" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alA" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alC" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alD" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"alE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"alF" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alG" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alH" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"alJ" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alK" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alL" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/radio, +/obj/item/device/radio, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"alM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alO" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alR" = ( +/obj/structure/bed/chair/wood, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/rnd/testingroom) +"alT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Testing Room"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/testingroom) +"alU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/rnd/testingroom) +"alV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access = list(8) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/tankstorage) +"alW" = ( +/obj/structure/sign/warning/caution, +/turf/simulated/wall/r_wall, +/area/rnd/tankstorage) +"alX" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable{ + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/random/junk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"alY" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "rnd_can_store" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/tankstorage) +"alZ" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/tankstorage) +"ama" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/computer/area_atmos/tag{ + dir = 4; + scrub_id = "rnd_can_store" + }, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/rnd/tankstorage) +"amb" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/tankstorage) +"amc" = ( +/obj/structure/sink{ + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"amd" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall/r_wall, +/area/rnd/tankstorage) +"ame" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"amf" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"amg" = ( +/obj/effect/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"amh" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"ami" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/coffee{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/public_garden) +"amj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amk" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/symbol/sa{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"aml" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/requests_console{ + department = "Tool Storage"; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amm" = ( +/obj/machinery/hologram/holopad, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amn" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amo" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amq" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"amr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"ams" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amt" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amu" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amv" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amw" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"amx" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amy" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amz" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amA" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"amB" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"amC" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/snack{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/public_garden) +"amD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amE" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amF" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amG" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amH" = ( +/obj/item/weapon/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amI" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amJ" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amK" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amL" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amM" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"amN" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amO" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amP" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"amQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"amR" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amU" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amV" = ( +/obj/machinery/vending/assist{ + dir = 8 + }, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amW" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amX" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amZ" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/storage/primary) +"ana" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"anb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"anc" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"and" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/tankstorage) +"ane" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"anf" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/cargo, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ang" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"anh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"ani" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = -24 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"anj" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"ank" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"anl" = ( +/obj/machinery/disposal, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"anm" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_5) +"ann" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_3) +"ano" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/outside/outside1) +"anp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"anq" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ + pixel_y = 13 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ + pixel_x = 9 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ + pixel_x = -10; + pixel_y = 5 + }, +/obj/item/trash/raisins{ + desc = "This trash looks like it's had one too many."; + name = "Wasted waste" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"anr" = ( +/obj/structure/catwalk, +/obj/random/cigarettes, +/obj/random/junk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ans" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Public Gardens" + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/hallway/lower/first_west) +"ant" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/hallway/lower/first_west) +"anu" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/primary) +"anv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"anw" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"anx" = ( +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"any" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anA" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"anE" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_1) +"anF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"anG" = ( +/obj/machinery/door/airlock/maintenance/rnd{ + req_one_access = list(47,24) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/rnd/hallway) +"anH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/bed/chair/office/dark, +/obj/structure/barricade/cutout/ntsec, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"anI" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"anJ" = ( +/obj/machinery/space_heater, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"anK" = ( +/obj/structure/symbol/lo, +/turf/simulated/wall{ + can_open = 1 + }, +/area/maintenance/lower/atmos) +"anL" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"anM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"anN" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anO" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anQ" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"anR" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"anS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/tether, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"anT" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"anU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + name = "Primary Tool Storage"; + sortType = "Primary Tool Storage" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"anV" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"anW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"anX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"anY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"anZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aoa" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/int{ + name = "Emergency Storage" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/surface_one_hall) +"aob" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aoc" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aod" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aoe" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "civ_airlock_scrubber" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/surface_eva/external) +"aof" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "civ_airlock_scrubber" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/surface_eva/external) +"aog" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aoh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aoi" = ( +/obj/structure/flora/pottedplant, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"aoj" = ( +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"aok" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aol" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/symbol/es{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aom" = ( +/obj/structure/closet/firecloset/full/double, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aon" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aoo" = ( +/obj/structure/table/standard, +/obj/item/device/t_scanner, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aop" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"aoq" = ( +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aor" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/storage/surface_eva/external) +"aos" = ( +/obj/structure/railing, +/obj/structure/grille, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "civ_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled, +/area/storage/surface_eva/external) +"aot" = ( +/obj/structure/railing, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/grille, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "civ_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled, +/area/storage/surface_eva/external) +"aou" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/civilian, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"aov" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/vending/wallmed_airlock{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"aow" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aox" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aoy" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/door/window/southleft, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aoz" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/door/window/southright, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aoA" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/shovel, +/obj/item/weapon/shovel, +/obj/item/weapon/soap, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aoB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"aoC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aoD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aoE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/lower/first_west) +"aoF" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/hallway/lower/first_west) +"aoG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/hallway/lower/first_west) +"aoH" = ( +/turf/simulated/wall, +/area/storage/art) +"aoI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/storage/art) +"aoJ" = ( +/obj/machinery/door/airlock/glass{ + name = "Art Storage" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/art) +"aoK" = ( +/obj/structure/sign/directions/evac{ + name = "\improper Secondary Evacuation Route" + }, +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_one) +"aoL" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/north_stairs_one) +"aoM" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aoN" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -4 + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_y = -10 + }, +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_one) +"aoO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aoP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aoQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aoR" = ( +/obj/machinery/light/flamp/noshade, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"aoS" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"aoT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aoU" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aoV" = ( +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/storage/surface_eva/external) +"aoW" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ_airlock_outer"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/surface_eva/external) +"aoX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva/external) +"aoY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled, +/area/storage/surface_eva/external) +"aoZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ_airlock_inner"; + locked = 1 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "civ_airlock"; + pixel_x = 8; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/surface_eva/external) +"apa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/storage/surface_eva) +"apd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"ape" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/storage/surface_eva) +"aph" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"api" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"apj" = ( +/turf/simulated/mineral, +/area/vacant/vacant_site) +"apk" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/obj/random/drinkbottle, +/obj/machinery/light_switch{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"apl" = ( +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"apm" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"apn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"apo" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"app" = ( +/obj/structure/table/rack, +/obj/random/cigarettes, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"apq" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/storage/fancy/crayons, +/turf/simulated/floor/tiled, +/area/storage/art) +"apr" = ( +/turf/simulated/floor/tiled, +/area/storage/art) +"aps" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"apt" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/tiled, +/area/storage/art) +"apu" = ( +/turf/simulated/wall, +/area/maintenance/lower/xenoflora) +"apv" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"apw" = ( +/obj/structure/stairs/south, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"apx" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"apy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"apz" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"apA" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"apB" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"apC" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"apD" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"apE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"apF" = ( +/turf/simulated/wall, +/area/maintenance/lower/vacant_site) +"apG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/vacant_site) +"apH" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "civ_airlock"; + pixel_x = -8; + pixel_y = -25 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ_airlock_outer"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/surface_eva/external) +"apI" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva/external) +"apJ" = ( +/obj/machinery/embedded_controller/radio/airlock/phoron{ + dir = 8; + id_tag = "civ_airlock"; + pixel_x = 25; + pixel_y = -30 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/airlock_sensor/phoron{ + id_tag = "civ_airlock_sensor"; + pixel_x = 25; + pixel_y = -40 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled, +/area/storage/surface_eva/external) +"apK" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ_airlock_inner"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/surface_eva/external) +"apL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apN" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Surface EVA" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/turf/simulated/floor/tiled/monofloor, +/area/storage/surface_eva) +"apO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apQ" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apS" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Surface EVA" + }, +/turf/simulated/floor/tiled/monofloor, +/area/storage/surface_eva) +"apT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"apU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"apV" = ( +/obj/effect/floor_decal/rust, +/obj/structure/table/rack, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"apW" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"apX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"apY" = ( +/obj/structure/table/standard, +/obj/item/device/camera_film{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/device/camera_film{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"apZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/storage/art) +"aqa" = ( +/obj/structure/table/standard, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"aqb" = ( +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"aqc" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aqd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aqe" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"aqf" = ( +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"aqg" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"aqh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aqi" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/vacant_site) +"aqj" = ( +/obj/structure/ladder/up, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"aqk" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"aql" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"aqm" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/storage/surface_eva/external) +"aqn" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "civ_airlock_scrubber" + }, +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/surface_eva/external) +"aqo" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "civ_airlock_scrubber" + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/surface_eva/external) +"aqp" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/structure/curtain/open/shower, +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/monotile, +/area/storage/surface_eva) +"aqq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"aqr" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aqs" = ( +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = -3 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/status_display{ + layer = 4; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aqt" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/table/rack{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northleft, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aqu" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/table/rack{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northright, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aqv" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/item/weapon/tool/crowbar/red, +/obj/item/weapon/tool/crowbar/red, +/obj/item/weapon/tool/crowbar/red, +/obj/item/weapon/tool/crowbar/red, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/item/clothing/glasses/goggles, +/obj/item/clothing/glasses/goggles, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aqw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aqx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aqy" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"aqz" = ( +/obj/structure/disposalpipe/segment, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"aqA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/cap/visible/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"aqB" = ( +/obj/structure/table/standard, +/obj/item/device/camera, +/obj/item/device/camera{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"aqC" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/storage/art) +"aqD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"aqE" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/hand_labeler, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"aqF" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/tether/surfacebase/north_stairs_one) +"aqG" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aqH" = ( +/obj/machinery/light/small, +/obj/structure/mopbucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aqI" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_one_hall) +"aqJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aqK" = ( +/mob/living/simple_mob/animal/passive/fish/koi/poisonous, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"aqL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aqM" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_one_hall) +"aqN" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/vacant_site) +"aqO" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"aqP" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"aqQ" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"aqR" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aqS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm2"; + name = "Room 2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_2) +"aqT" = ( +/turf/simulated/wall/r_wall, +/area/storage/surface_eva/external) +"aqU" = ( +/turf/simulated/wall/r_wall, +/area/storage/surface_eva) +"aqV" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/first_aid_west) +"aqW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aqX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aqY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/tether{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aqZ" = ( +/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"ara" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"arb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"arc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"ard" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/device/taperecorder, +/obj/item/device/taperecorder, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"are" = ( +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"arf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"arg" = ( +/obj/structure/railing, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"arh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"ari" = ( +/turf/simulated/floor, +/area/maintenance/lower/xenoflora) +"arj" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"ark" = ( +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"arl" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"arm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/loadout/accessory, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"arn" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/device/radio/emergency, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"aro" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arp" = ( +/obj/machinery/sleep_console, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arq" = ( +/obj/machinery/vending/wallmed1/public{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arr" = ( +/obj/structure/sign/redcross{ + name = "FirstAid" + }, +/turf/simulated/wall, +/area/tether/surfacebase/medical/first_aid_west) +"ars" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"art" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/weapon/tape_roll{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/tape_roll, +/turf/simulated/floor/tiled, +/area/storage/art) +"aru" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/weapon/pen/red{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/storage/art) +"arv" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"arw" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/random/junk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"arx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/tether{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ary" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"arz" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"arA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"arB" = ( +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"arC" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"arD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/loadout/gadget, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"arE" = ( +/obj/structure/table/rack, +/obj/item/bodybag/cryobag, +/obj/item/weapon/tool/crowbar, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/item/device/defib_kit/loaded, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arG" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arH" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "First-Aid Station"; + req_one_access = newlist() + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/medical/first_aid_west) +"arI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"arJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"arK" = ( +/obj/structure/closet, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"arL" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"arM" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/random/trash_pile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"arN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"arO" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"arP" = ( +/obj/structure/table/glass, +/obj/item/device/radio/phone/medbay{ + name = "Medical Emergency Phone" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arQ" = ( +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arR" = ( +/obj/structure/table/glass, +/obj/random/medical/lite, +/obj/item/device/radio/intercom/department/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = 28 + }, +/obj/structure/bed/roller, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/first_aid_west) +"arU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"arV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"arW" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/hallway/lower/first_west) +"arX" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"arY" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"arZ" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"asa" = ( +/obj/structure/sign/directions/evac, +/turf/simulated/wall, +/area/tether/surfacebase/surface_one_hall) +"asb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"asc" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"asd" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"ase" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"asf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"asg" = ( +/obj/structure/sign/directions/evac, +/turf/simulated/wall, +/area/crew_quarters/locker) +"ash" = ( +/turf/simulated/wall, +/area/crew_quarters/locker) +"asi" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Locker Room Maintenance" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/locker) +"asj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ask" = ( +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"asl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"asm" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/turf/simulated/floor/tiled/monofloor, +/area/hallway/lower/first_west) +"asn" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/random/cutout, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"aso" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"asp" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"asq" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"asr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ass" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ast" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/shoes/black, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"asu" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/clothing/shoes/black, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"asv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"asw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"asx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"asy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"asz" = ( +/turf/simulated/wall/r_wall, +/area/rnd/xenoarch_storage) +"asA" = ( +/obj/item/weapon/storage/excavation, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/wrench, +/obj/item/device/measuring_tape, +/obj/item/stack/flag/yellow, +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"asB" = ( +/obj/item/weapon/storage/excavation, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/wrench, +/obj/item/device/measuring_tape, +/obj/item/stack/flag/yellow, +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"asC" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"asD" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"asE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"asF" = ( +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/maintenance/research, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"asG" = ( +/obj/effect/map_effect/portal/master/side_a{ + dir = 1; + name = "to_wilderness"; + portal_id = "wilderness_step" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"asH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"asI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"asJ" = ( +/obj/structure/catwalk, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"asK" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"asL" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"asM" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/surface_one_hall) +"asN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"asO" = ( +/obj/machinery/light/small, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"asP" = ( +/obj/effect/floor_decal/rust, +/obj/effect/map_effect/portal/master/side_a{ + dir = 4; + name = "to_solars"; + portal_id = "solarstep" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"asQ" = ( +/obj/effect/floor_decal/rust, +/obj/effect/map_effect/portal/line/side_a{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"asR" = ( +/obj/effect/map_effect/portal/line/side_a{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"asS" = ( +/obj/effect/map_effect/portal/line/side_a{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"asT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"asU" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"asV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"asW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"asX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"asY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"asZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ata" = ( +/obj/structure/closet/crate, +/obj/random/action_figure, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"atb" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet/crate, +/obj/random/maintenance/research, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/obj/item/weapon/pickaxe, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"atc" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atd" = ( +/obj/machinery/door/airlock{ + id_tag = "lg_1"; + name = "Looking Glass" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_one) +"ate" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"atf" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/random/trash_pile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"atg" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"ath" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + name = "\improper Secondary Evacuation Route" + }, +/turf/simulated/wall, +/area/maintenance/lower/xenoflora) +"ati" = ( +/obj/structure/sign/directions/evac{ + name = "\improper Secondary Evacuation Route" + }, +/turf/simulated/wall, +/area/maintenance/lower/xenoflora) +"atj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"atk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"atl" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"atm" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"atn" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ato" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atp" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atq" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atr" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/random/soap, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"ats" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"att" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/recharger, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atu" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/random/maintenance/clean, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atx" = ( +/turf/simulated/wall, +/area/tether/surfacebase/tram) +"aty" = ( +/obj/structure/sign/warning{ + name = "\improper STAND AWAY FROM TRACK EDGE" + }, +/turf/simulated/wall, +/area/tether/surfacebase/tram) +"atz" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"atA" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"atB" = ( +/turf/simulated/floor/maglev, +/area/tether/surfacebase/tram) +"atC" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"atD" = ( +/obj/structure/closet/excavation, +/obj/item/weapon/melee/umbrella/random, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"atE" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"atF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"atG" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall, +/area/maintenance/substation/civ_west) +"atH" = ( +/turf/simulated/wall, +/area/maintenance/substation/civ_west) +"atI" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atJ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atK" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"atL" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"atM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"atN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atO" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atP" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atQ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atW" = ( +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"atX" = ( +/obj/structure/bed/chair, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"atY" = ( +/obj/structure/bed/chair, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"atZ" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aua" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"aub" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/tram) +"auc" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"aud" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"aue" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"aug" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"auh" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/item/weapon/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"aui" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"auj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"auk" = ( +/obj/machinery/door/airlock/engineering{ + name = "Civilian West Substation"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/maintenance/substation/civ_west) +"aul" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Civ West Subgrid"; + name_tag = "Civ West Subgrid" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civ_west) +"aum" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Civ West"; + output_attempt = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civ_west) +"aun" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Civ West Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civ_west) +"auo" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"aup" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/common{ + name = "Mining Maintenance Access" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"auq" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"aur" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"aus" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aut" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"auu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"auv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/structure/closet/wardrobe/mixed, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"auw" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/machinery/computer/timeclock/premade/south, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"aux" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/structure/closet/wardrobe/suit, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"auy" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/machinery/light, +/obj/item/clothing/shoes/black, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"auz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"auA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auB" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auC" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auD" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/wall, +/area/tether/surfacebase/tram) +"auE" = ( +/turf/simulated/wall, +/area/rnd/xenoarch_storage) +"auF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"auG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"auH" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civ_west) +"auI" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civ_west) +"auJ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civ_west) +"auK" = ( +/turf/simulated/wall, +/area/maintenance/lower/solars) +"auL" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"auM" = ( +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"auN" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"auO" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"auP" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"auQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"auR" = ( +/turf/simulated/wall, +/area/security/checkpoint) +"auS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auU" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auW" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "rnd_s_airlock_scrubber" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/external) +"auY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"auZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ava" = ( +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Research Division Access"; + req_access = list(47) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/lower/first_west) +"avb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"avc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/camera/network/tether{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"avd" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall, +/area/maintenance/lower/solars) +"ave" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Civilian West Substation"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avf" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/engi{ + id_tag = "elevescaper"; + name = "Elevator Maintenance" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"avj" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Solars Maintenance Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"avk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"avl" = ( +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"avm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/tether{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"avn" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"avo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"avp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + id_tag = null; + layer = 2.8; + name = "Security Checkpoint"; + req_access = list(1) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = 10; + pixel_y = 36 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/security, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/bookcase, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/security_space_law, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"avB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"avC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"avD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"avE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"avF" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"avG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"avH" = ( +/obj/structure/sign/department/anomaly, +/turf/simulated/wall, +/area/hallway/lower/first_west) +"avI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"avJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"avK" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/railing, +/obj/structure/table/rack, +/obj/random/maintenance/medical, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance/medical, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avO" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"avP" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avQ" = ( +/obj/structure/reagent_dispensers/virusfood{ + density = 0; + pixel_y = 62 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"avR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"avS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"avT" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/lower/xenoflora) +"avU" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/surface_one_hall) +"avV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"avW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"avX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"avY" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"avZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/computer/security{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awa" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/red, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/filingcabinet/security{ + name = "Security Records" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awd" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awe" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"awj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"awl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"awm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/mauve/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"awn" = ( +/turf/simulated/wall, +/area/rnd/hallway) +"awo" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/lower/first_west) +"awp" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/cola{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/lower/first_west) +"awq" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/fitness{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/lower/first_west) +"awr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aws" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"awt" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"awu" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"awv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"aww" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/camera/network/medbay{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awy" = ( +/obj/structure/closet/secure_closet/paramedic, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"awz" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awA" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "elevescaper"; + name = "elevator escape button"; + pixel_y = 32 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"awC" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awD" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/disposalpipe/up, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"awE" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awF" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awG" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"awI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"awJ" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"awK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/camera/network/tether{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"awL" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall, +/area/security/checkpoint) +"awM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/brigdoor/northright, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/monotile, +/area/security/checkpoint) +"awN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/security/checkpoint) +"awO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/glass, +/obj/item/weapon/folder/red, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awR" = ( +/obj/machinery/vending/snack{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"awS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"awT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"awU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"awV" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 8; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 24; + pixel_y = 25; + req_access = list(39) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access = list(39) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "virologyquar"; + name = "Virology Emergency Quarantine Blast Doors"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"awY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"axa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"axb" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access = list(39) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"axc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 8; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = 25; + req_access = list(39) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -38; + pixel_y = -30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"axd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"axe" = ( +/obj/machinery/door/airlock/maintenance/engi{ + name = "Elevator Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"axf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"axg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axh" = ( +/obj/machinery/camera/network/northern_star, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"axk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axl" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/power/apc/high{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axn" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/camera/network/northern_star{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axo" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/light, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axq" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axr" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axs" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/security/checkpoint) +"axt" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/security/checkpoint) +"axu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"axv" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"axw" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"axx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"axy" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/tram, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"axz" = ( +/obj/machinery/vending/cola{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"axA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"axB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"axC" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"axD" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"axE" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"axF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/disease2/isolator, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"axG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"axH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"axI" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"axJ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"axK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"axL" = ( +/obj/structure/sign/nosmoking_1, +/turf/simulated/wall, +/area/tether/surfacebase/medical/lowerhall) +"axM" = ( +/obj/machinery/vending/coffee{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"axN" = ( +/obj/machinery/vending/fitness{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"axO" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"axP" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/centralstairwell) +"axQ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"axR" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"axS" = ( +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"axT" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axU" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aya" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayd" = ( +/obj/machinery/shower{ + dir = 4; + pixel_x = 2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/curtain/open/shower/medical, +/turf/simulated/floor/tiled/steel, +/area/medical/virologyaccess) +"aye" = ( +/obj/structure/table/standard, +/obj/random/medical, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"ayf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"ayg" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 4; + id_tag = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = -28; + pixel_y = -6; + tag_exterior_door = "virology_airlock_exterior"; + tag_interior_door = "virology_airlock_interior" + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + dir = 4; + id = "virologyquar"; + name = "Virology Emergency Lockdown Control"; + pixel_x = -28; + pixel_y = 6; + req_access = list(5) + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayh" = ( +/turf/simulated/wall, +/area/crew_quarters/locker/laundry_arrival) +"ayi" = ( +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/turf/simulated/wall, +/area/crew_quarters/locker/laundry_arrival) +"ayj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayk" = ( +/obj/structure/table/glass, +/obj/item/device/radio{ + anchored = 1; + canhear_range = 7; + frequency = 1487; + icon = 'icons/obj/items.dmi'; + icon_state = "red_phone"; + name = "Virology Emergency Phone"; + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/device/antibody_scanner, +/obj/item/device/antibody_scanner{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aym" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + icon_state = "monotile" + }, +/area/security/checkpoint) +"ayn" = ( +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/turf/simulated/wall, +/area/security/checkpoint) +"ayo" = ( +/obj/structure/grille, +/obj/structure/railing, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"ayp" = ( +/obj/structure/sign/warning/nosmoking_1, +/turf/simulated/wall, +/area/tether/surfacebase/tram) +"ayq" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"ayr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ays" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ayt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayw" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Virology Laboratory"; + req_access = list(39) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayA" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayB" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/tagger{ + dir = 2; + name = "package tagger - Void"; + sort_tag = "Void" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"ayC" = ( +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"ayD" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"ayE" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayG" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayH" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayK" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayM" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/monkeycubes, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayN" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayQ" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/vending/fitness, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/locker/laundry_arrival) +"ayR" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/locker/laundry_arrival) +"ayS" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/locker/laundry_arrival) +"ayT" = ( +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/locker/laundry_arrival) +"ayU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"ayV" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/laundry_basket, +/obj/item/weapon/tape_roll, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"ayW" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"ayX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayY" = ( +/obj/structure/stairs/east, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"ayZ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"aza" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"azb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"azc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aze" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/camera/network/tether, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azm" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/tram) +"azn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/landmark/tram, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"azo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/landmark/tram, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"azp" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/cryopod/robot/door/tram, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/tram) +"azq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"azs" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/lower/solars) +"azt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"azu" = ( +/obj/item/device/radio{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Virology. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Virology Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/hand_labeler, +/obj/structure/table/glass, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azv" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/lime/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/lime/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azw" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/lockbox/vials, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/storage/secure/safe{ + pixel_y = -28 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azx" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/lime/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azA" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"azB" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/storage/box/cups, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"azC" = ( +/obj/structure/reagent_dispensers/water_cooler/full{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"azD" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"azE" = ( +/obj/structure/railing, +/obj/machinery/camera/network/medbay{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"azF" = ( +/obj/structure/stairs/east, +/obj/structure/railing, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"azG" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'CRUSH WARNING'."; + name = "\improper CRUSH WARNING"; + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"azH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/virology) +"azI" = ( +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Virology Isolation Room One"; + req_one_access = list(39) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azJ" = ( +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Virology Isolation Room Two"; + req_one_access = list(39) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azK" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"azL" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azM" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azN" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azO" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azT" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"azU" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'CRUSH WARNING'."; + name = "\improper CRUSH WARNING"; + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"azV" = ( +/turf/simulated/wall, +/area/medical/virology) +"azW" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azZ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aAa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"aAd" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"aAe" = ( +/obj/structure/bed/padded, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aAf" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/crew_quarters/locker/laundry_arrival) +"aAg" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aAh" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/status_display{ + layer = 4; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aAi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/medical{ + name = "Medical Maintenance Access"; + req_access = list(5) + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"aAj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/rnd{ + name = "Science Maintenance" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aAk" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aAl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aAm" = ( +/obj/random/junk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAo" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAp" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAq" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAr" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aAt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aAv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/rnd{ + name = "Science Maintenance" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aAy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aAz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAA" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAB" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "northciv_airlock_scrubber" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/lowernortheva) +"aAC" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"aAD" = ( +/turf/simulated/wall, +/area/maintenance/lowmedbaymaint) +"aAE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAG" = ( +/turf/simulated/mineral, +/area/maintenance/lowmedbaymaint) +"aAH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAI" = ( +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAJ" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "northciv_airlock_scrubber" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/lowernortheva) +"aAK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAL" = ( +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAM" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"aAN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aAO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aAP" = ( +/obj/structure/sign/directions/evac{ + name = "\improper Secondary Evacuation Route" + }, +/turf/simulated/wall, +/area/tether/surfacebase/surface_one_hall) +"aAQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/obj/machinery/door/airlock/glass_external/public{ + name = "Evacuation Route" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/surface_one_hall) +"aAR" = ( +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/turf/simulated/wall, +/area/tether/surfacebase/surface_one_hall) +"aAS" = ( +/obj/structure/closet/crate, +/obj/item/weapon/handcuffs/fuzzy, +/obj/random/maintenance/security, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_one_hall) +"aAT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAU" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAV" = ( +/obj/structure/railing, +/obj/structure/table/rack, +/obj/item/clothing/suit/suspenders, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAW" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/maintenance/lowmedbaymaint) +"aAX" = ( +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAY" = ( +/obj/structure/railing, +/obj/structure/closet/crate, +/obj/item/device/camera, +/obj/item/device/tape/random, +/obj/item/device/taperecorder/empty, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAZ" = ( +/obj/structure/railing, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBa" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBc" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/random/cigarettes, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBd" = ( +/obj/random/trash_pile, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBe" = ( +/obj/structure/railing, +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/weapon/tank/emergency, +/obj/item/weapon/tank/emergency, +/obj/item/weapon/tank/emergency, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/visible/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aBi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aBj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBk" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"aBl" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBn" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"aBo" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aBp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aBq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aBr" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"aBt" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBu" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aBv" = ( +/turf/simulated/wall, +/area/rnd/miscellaneous_lab) +"aBw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aBx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBz" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -13; + pixel_y = -30 + }, +/obj/structure/cable, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBA" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBB" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBE" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBG" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBH" = ( +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/weapon/tank/oxygen/red, +/obj/item/clothing/mask/gas/wwii, +/obj/item/clothing/head/hardhat/red, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBJ" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/lower/research) +"aBK" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aBN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBO" = ( +/turf/simulated/wall, +/area/maintenance/lower/research) +"aBP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/crew_quarters/locker/laundry_arrival) +"aBS" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/locker/laundry_arrival) +"aBT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/locker/laundry_arrival) +"aBU" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aBV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aBW" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_one_hall) +"aBZ" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/surface_one_hall) +"aCa" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aCb" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aCc" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aCd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aCh" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCi" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCj" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aCk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aCl" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aCm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCp" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common{ + name = "Mining Maintenance Access" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/lowernorthhall) +"aCr" = ( +/turf/simulated/wall, +/area/tether/surfacebase/cargostore/warehouse) +"aCs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCt" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCu" = ( +/obj/structure/railing, +/obj/structure/closet/crate, +/obj/item/clothing/head/that, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCv" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCx" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Atmospherics Subgrid"; + name_tag = "Atmospherics Subgrid" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aCy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCA" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCB" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aCD" = ( +/obj/machinery/recharge_station, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aCE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aCF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aCG" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aCH" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aCI" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aCJ" = ( +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"aCK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aCL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/mining, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargostore/warehouse) +"aCM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aCN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aCO" = ( +/turf/simulated/wall, +/area/crew_quarters/visitor_dining) +"aCP" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aCQ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aCR" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aCS" = ( +/obj/structure/flora/pottedplant, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aCT" = ( +/obj/machinery/vending/fitness{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aCU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aCV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCW" = ( +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aCX" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCY" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCZ" = ( +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aDa" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 10; + id = "gloriouscargopipeline" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDb" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "gloriouscargopipeline" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDe" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDf" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDg" = ( +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDi" = ( +/turf/simulated/wall, +/area/tether/surfacebase/emergency_storage/rnd) +"aDj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/catwalk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aDk" = ( +/obj/item/weapon/bone/skull/unathi, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aDl" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aDm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aDn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aDo" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aDp" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aDq" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aDr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDs" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDt" = ( +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDu" = ( +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aDv" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aDw" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aDx" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aDy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aDB" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDC" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDD" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDE" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aDG" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aDH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aDI" = ( +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aDJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/vending/cola{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/monotile, +/area/rnd/hallway) +"aDL" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDM" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aDN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDO" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aDP" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aDQ" = ( +/obj/machinery/space_heater, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aDR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aDS" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Laundry Maintenance Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/locker/laundry_arrival) +"aDT" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/tether/surfacebase/surface_one_hall) +"aDU" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "gloriouscargopipeline" + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "gloriouscargopipeline"; + name = "Mining Ops conveyor switch"; + pixel_x = -5; + pixel_y = -3; + req_access = list(48); + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDX" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aDY" = ( +/obj/machinery/door/window{ + dir = 8; + req_one_access = list(25) + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aDZ" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = 10; + pixel_y = 36 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "cafe"; + name = "Cafe Shutters"; + pixel_x = -10; + pixel_y = 36; + req_one_access = list(25) + }, +/obj/structure/sink{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aEa" = ( +/obj/structure/table/marble, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/reagent_containers/food/condiment/small/sugar, +/obj/machinery/floor_light/prebuilt{ + on = 1 + }, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aEb" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aEc" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aEd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEe" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aEf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEi" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEj" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/warning/moving_parts{ + desc = "A warning sign for moving parts. This one states 'Put your gathered ore here for processing!' on it."; + name = "To Mining Operations Processing"; + pixel_x = -32 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEm" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aEn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/monotile, +/area/rnd/hallway) +"aEo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aEq" = ( +/obj/machinery/door/airlock/maintenance/int{ + name = "Emergency Storage" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/hallway) +"aEr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aEs" = ( +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aEt" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aEu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aEv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aEw" = ( +/obj/effect/floor_decal/rust, +/obj/structure/railing, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aEx" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aEy" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aEz" = ( +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aEA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aEB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aEC" = ( +/obj/structure/table/rack, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aED" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aEE" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aEF" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + id_tag = null; + name = "Construction Site" + }, +/turf/simulated/floor/tiled/monofloor, +/area/tether/surfacebase/surface_one_hall) +"aEG" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aEI" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/crew_quarters/visitor_dining) +"aEJ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aEK" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aEL" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aEM" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aEN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aEO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aEP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aEQ" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/maintenance/lower/solars) +"aER" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aES" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aET" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aEU" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEW" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEX" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aEY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aEZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/camera/network/cargo, +/obj/structure/bed/chair, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFc" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "Shop Warehouse"; + req_one_access = list(48) + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargostore/warehouse) +"aFd" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargostore/warehouse) +"aFe" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFh" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aFi" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aFj" = ( +/obj/structure/table/standard, +/obj/item/device/t_scanner, +/obj/item/weapon/storage/briefcase/inflatable, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aFk" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/bench/steel, +/obj/random/cigarettes, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aFl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aFm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/holosign/bar{ + id = "maintbar"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aFn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aFo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aFp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/external{ + name = "Evacuation Route" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aFq" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"aFr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"aFs" = ( +/obj/machinery/atmospherics/pipe/cap/visible/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"aFt" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Warehouse" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargostore/warehouse) +"aFu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFw" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + id_tag = null; + name = "Cafe" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor, +/area/crew_quarters/visitor_dining) +"aFx" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aFy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aFz" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aFA" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aFB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/landmark/start{ + name = "Bartender" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aFC" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/machinery/floor_light/prebuilt{ + on = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aFD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/visitor_dining) +"aFE" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFF" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aFN" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + name = "\improper Secondary Evacuation Route" + }, +/turf/simulated/wall, +/area/maintenance/lower/research) +"aFO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFP" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aFS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aFT" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/machinery/floor_light/prebuilt{ + on = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aFU" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFV" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFW" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFZ" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aGa" = ( +/turf/simulated/wall, +/area/tether/surfacebase/cargostore) +"aGb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGi" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGj" = ( +/turf/simulated/wall, +/area/tether/surfacebase/cargostore/office) +"aGk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/power/apc/high{ + dir = 4; + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGr" = ( +/obj/structure/bed/chair/sofa/brown/right, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGs" = ( +/obj/structure/bed/chair/sofa/brown/corner, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGt" = ( +/turf/simulated/wall, +/area/vacant/vacant_site/east) +"aGu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aGv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aGw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aGx" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aGy" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + dir = 8 + }, +/obj/machinery/floor_light/prebuilt{ + on = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aGz" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aGA" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aGB" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/high{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aGC" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aGD" = ( +/obj/structure/cable/ender{ + icon_state = "4-8"; + id = "surface-solars" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aGE" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aGF" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aGG" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aGH" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aGI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aGJ" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aGK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGP" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGQ" = ( +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargostore/office) +"aGR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aGS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGT" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like it's on MTV. Now you can't blame that demi-cowgirl for working her money maker. I wonder what else is on?"; + icon_state = "frame"; + pixel_x = 16; + pixel_y = 64 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGU" = ( +/obj/structure/bed/chair/sofa/brown/left{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGV" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aGW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGX" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aHa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/structure/closet/bombcloset, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aHb" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aHc" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aHd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aHe" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aHf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aHg" = ( +/obj/random/action_figure, +/obj/random/action_figure, +/obj/random/action_figure, +/obj/structure/closet/wardrobe/grey{ + starts_with = list(/obj/structure/barricade/cutout/viva, /obj/item/clothing/under/color/grey = 3, /obj/item/clothing/shoes/black = 3, /obj/item/clothing/head/soft/grey = 3, /obj/item/clothing/mask/gas/wwii = 3, /obj/item/weapon/storage/toolbox/mechanical = 3, /obj/item/clothing/gloves/fyellow = 3, /obj/item/weapon/card/id/gold/captain/spare/fakespare = 3, /obj/item/weapon/soap/syndie = 3, /obj/item/weapon/storage/box/mousetraps = 3) + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aHh" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aHi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aHj" = ( +/obj/machinery/door/window/southright{ + req_access = list(5) + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aHk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aHl" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aHm" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aHn" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aHo" = ( +/obj/structure/sign/warning/high_voltage{ + name = "\improper SOLAR FARM" + }, +/turf/unsimulated/wall/planetary/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aHp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aHq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aHr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aHs" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aHt" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/rnd{ + name = "Science Maintenance" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/hallway) +"aHu" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/boxinggloves, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aHv" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/substation/surface_atmos) +"aHw" = ( +/obj/effect/floor_decal/rust, +/obj/random/trash_pile, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aHx" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aHy" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aHz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aHA" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aHB" = ( +/obj/effect/floor_decal/rust, +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm3) +"aHC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aHD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aHE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/button/remote/airlock{ + id = "maintdorm2"; + name = "Room 2 Lock"; + pixel_x = 23; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aHF" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westleft{ + req_access = list(31) + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aHG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/visitor_dining) +"aHH" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aHI" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aHJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/visitor_dining) +"aHK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aHL" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aHM" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet, +/obj/machinery/conveyor{ + id = "surfacecargo" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/sign/warning{ + desc = "A warning sign. It has great big words saying 'Surface Cargo Deliveries. Stay behind the railings when active!' on it."; + name = "Surface Cargo Delivery"; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/cargostore) +"aHN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aHO" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aHP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aHQ" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aHR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aHS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aHT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aHU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aHV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common{ + name = "Mining Maintenance Access" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/cargostore) +"aHW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/button/remote/airlock{ + id = "maintdorm1"; + name = "Room 1 Lock"; + pixel_x = 23; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"aHX" = ( +/obj/effect/floor_decal/rust, +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm1) +"aHY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aHZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aIa" = ( +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aIb" = ( +/obj/structure/railing, +/obj/structure/closet, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/cigarettes, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aIc" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aId" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aIe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aIf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aIg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm3) +"aIh" = ( +/turf/simulated/wall/r_wall, +/area/engineering/atmos) +"aIi" = ( +/obj/structure/table, +/obj/item/frame, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aIj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aIk" = ( +/obj/structure/railing, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aIl" = ( +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aIm" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aIn" = ( +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aIo" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aIp" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aIq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aIr" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aIt" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIv" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIw" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIx" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIz" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aIB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/vending/wallmed_airlock{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aIC" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/binary/passive_gate/on, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aID" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aIE" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aIF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aIG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aIH" = ( +/obj/structure/table, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"aII" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aIJ" = ( +/obj/effect/floor_decal/rust, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aIK" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aIL" = ( +/obj/structure/table/rack, +/obj/random/junk, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aIM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aIN" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Atmospherics"; + charge = 2e+006 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aIO" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Atmos Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aIP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + pixel_y = 9 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aIU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/machinery/camera/network/engineering, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIX" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aIZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aJa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aJb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aJc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJi" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aJk" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + req_access = list(31) + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aJl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aJm" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/condiment/small/sugar, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJn" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJo" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJq" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aJs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aJt" = ( +/obj/structure/railing, +/obj/machinery/conveyor{ + dir = 5; + id = "surfacecargo" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aJu" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/stack/material/wood{ + amount = 10 + }, +/obj/structure/table, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aJv" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aJw" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aJx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aJy" = ( +/obj/structure/table/standard, +/obj/item/weapon/stamp/cargo, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/yellow, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aJz" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/retail_scanner/civilian, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aJA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aJB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aJC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aJD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_construct/small, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aJE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aJF" = ( +/turf/simulated/wall/r_wall, +/area/engineering/atmos/gas_storage) +"aJG" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Substation"; + req_access = list(24) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aJH" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aJI" = ( +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aJJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aJK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aJL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aJM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aJN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aJO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/structure/table/standard, +/obj/item/stack/cable_coil/random_belt, +/obj/item/stack/cable_coil/random_belt, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/item/taperoll/atmos, +/obj/item/stack/cable_coil/random_belt, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aJP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/shifted, +/obj/effect/floor_decal/corner/lightgrey/border/shifted, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJQ" = ( +/obj/effect/floor_decal/borderfloor/shifted, +/obj/effect/floor_decal/corner/lightgrey/border/shifted, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/shifted, +/obj/effect/floor_decal/corner/lightgrey/border/shifted, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aJT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aJU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aJV" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aJY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aJZ" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aKa" = ( +/turf/simulated/wall, +/area/maintenance/asmaint2) +"aKb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aKc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aKd" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aKe" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aKf" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aKg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aKh" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/weapon/tank/oxygen/red, +/obj/item/clothing/mask/gas/wwii, +/obj/item/clothing/head/hardhat/red, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aKi" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aKj" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aKk" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aKl" = ( +/obj/structure/table/standard, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 3; + name = "Atmos RC"; + pixel_y = 28 + }, +/obj/item/weapon/tool/wrench, +/obj/item/device/t_scanner, +/obj/item/weapon/storage/belt/utility/atmostech, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKm" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/table/standard, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/item/device/radio/headset/headset_eng, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc/super{ + dir = 1; + pixel_y = 28 + }, +/obj/machinery/button/remote/blast_door{ + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + req_one_access = list(10,24) + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKn" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/fireaxecabinet{ + pixel_y = 32 + }, +/obj/structure/table/standard, +/obj/item/device/pipe_painter{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/pipe_painter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKo" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/structure/table/standard, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKp" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKq" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKr" = ( +/obj/structure/railing, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aKs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/supply, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/cee, +/obj/effect/floor_decal/industrial/danger/cee, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aKv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing, +/obj/structure/table/standard, +/obj/random/maintenance/engineering, +/obj/item/stack/cable_coil/random_belt, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aKx" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKy" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKz" = ( +/obj/item/weapon/beach_ball/holoball, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aKA" = ( +/obj/structure/stairs/south, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKC" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/random/plushie, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKD" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/vending/coffee{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKE" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/lapvend{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKF" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/window/northright{ + dir = 4; + name = "Mailing Room"; + req_access = list(50) + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "surfcargooffice"; + layer = 3.3; + name = "Cargo Office Shutters" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aKH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKI" = ( +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/machinery/button/remote/blast_door{ + id = "surfcargooffice"; + name = "Office Shutters"; + pixel_x = -7; + pixel_y = 24; + req_access = list(31) + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aKJ" = ( +/obj/machinery/light, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aKK" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aKL" = ( +/turf/simulated/wall, +/area/rnd/external) +"aKM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "rnd_s_airlock_inner"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/external) +"aKN" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/access_button/airlock_interior{ + master_tag = "rnd_s_airlock"; + pixel_x = 25; + pixel_y = 24 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "rnd_s_airlock_inner"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/external) +"aKO" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aKP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aKQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aKR" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aKS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"aKT" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aKU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/pipedispenser, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKV" = ( +/obj/item/weapon/stool, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKW" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKX" = ( +/obj/structure/cable/cyan{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/machinery/atmospherics/pipe/zpipe/up, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aKY" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + name = "Distro Loop Drain" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + name = "Waste to Filter" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + name = "Air to Distro" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLc" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLd" = ( +/obj/machinery/atmospherics/pipe/zpipe/up, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aLe" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aLg" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_7) +"aLh" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/crew_quarters/visitor_lodging) +"aLi" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/crew_quarters/visitor_lodging) +"aLj" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_8) +"aLk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aLl" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aLm" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"aLn" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/fire{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/external) +"aLo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/embedded_controller/radio/airlock/phoron{ + id_tag = "rnd_s_airlock"; + pixel_y = 30 + }, +/obj/machinery/airlock_sensor/phoron{ + id_tag = "rnd_s_airlock_sensor"; + pixel_x = 11; + pixel_y = 30 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled, +/area/rnd/external) +"aLp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/external) +"aLq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/external) +"aLr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "rnd_s_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled, +/area/rnd/external) +"aLs" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/external) +"aLt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aLu" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aLv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aLw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aLx" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aLy" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aLz" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aLA" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/pipedispenser/disposal, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLB" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLC" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLD" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLE" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump/on{ + name = "Ports to Waste" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLF" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLG" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLH" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "Scrubber to Waste" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLI" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + name = "Air to Distro" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLJ" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + name = "Air to Ports" + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aLL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aLM" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_7/holo) +"aLN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/computer/HolodeckControl/holodorm/seven, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"aLO" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"aLP" = ( +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aLR" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aLS" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 26 + }, +/obj/random/drinkbottle, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aLT" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aLU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aLV" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aLW" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_8) +"aLX" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_8) +"aLY" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/external) +"aLZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aMa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/external) +"aMb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/external) +"aMc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aMd" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/external) +"aMe" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aMf" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aMg" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_atmos{ + name = "Canister Storage"; + req_access = list(24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMn" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/red, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMq" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + target_pressure = 300 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMw" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aMx" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_7/holo) +"aMy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"aMz" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm7"; + name = "Room 7 Lock"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"aMA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aMB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aMC" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm8"; + name = "Room 8 Lock"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aMD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aMF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aMG" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aMH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_8) +"aMI" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_8) +"aMJ" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "rnd_s_airlock_outer"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/external) +"aMK" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "rnd_s_airlock"; + pixel_x = 25; + pixel_y = -8; + req_access = list(47) + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "rnd_s_airlock_outer"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/external) +"aML" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aMM" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aMN" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_atmos{ + name = "Canister Storage"; + req_access = list(24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMU" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMV" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMX" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNb" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNg" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNh" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"aNj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"aNk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm7"; + name = "Room 7 (Holo)" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_7) +"aNl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aNm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aNn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm8"; + name = "Room 8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_8) +"aNo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aNp" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aNq" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aNr" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aNs" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aNt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_8) +"aNu" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_8) +"aNv" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/rnd/external) +"aNw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/rnd/external) +"aNx" = ( +/obj/machinery/camera/network/research, +/obj/machinery/floodlight, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/rnd/external) +"aNy" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet/crate, +/obj/random/cigarettes, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/research) +"aNz" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aNA" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aNB" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aNC" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aND" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNE" = ( +/turf/simulated/wall, +/area/engineering/atmos) +"aNF" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNH" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNI" = ( +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNJ" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNK" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNM" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNN" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNO" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aNR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aNS" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_6) +"aNT" = ( +/obj/item/stack/material/steel, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aNU" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aNV" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aNW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNY" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aOa" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOc" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Port to Isolation" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOe" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOf" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOh" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOi" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOj" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_5) +"aOk" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_5/holo) +"aOl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/computer/HolodeckControl/holodorm/five, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"aOm" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"aOn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aOo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aOp" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOq" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 26 + }, +/obj/random/carp_plushie, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOr" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOs" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOt" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOu" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_6) +"aOv" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_6) +"aOw" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aOx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOy" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOD" = ( +/obj/machinery/atmospherics/omni/mixer{ + name = "Air Mixer"; + tag_north = 2; + tag_south = 1; + tag_south_con = 0.79; + tag_west = 1; + tag_west_con = 0.21 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOE" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOF" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_5/holo) +"aOG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"aOH" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm5"; + name = "Room 5 Lock"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"aOI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aOJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aOK" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm6"; + name = "Room 6 Lock"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aON" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOO" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_6) +"aOQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_6) +"aOR" = ( +/turf/simulated/wall/r_wall, +/area/engineering/atmos/processing) +"aOS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aOT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/tether{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aOU" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOX" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"aOZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"aPa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm5"; + name = "Room 5 (Holo)" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_5) +"aPb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aPc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aPd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm6"; + name = "Room 6" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_6) +"aPe" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aPf" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aPg" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aPh" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/reddouble, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aPi" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aPj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_6) +"aPk" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_6) +"aPl" = ( +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPn" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/super{ + dir = 1; + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPq" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPw" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 8; + name = "Waste Purge Valve"; + target_pressure = 4500 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPA" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPC" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPD" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPF" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aPG" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aPH" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aPI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aPJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aPK" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_4) +"aPL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPS" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPT" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPU" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/on{ + name = "Waste Compresser" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQa" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aQb" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_3) +"aQc" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_3/holo) +"aQd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/computer/HolodeckControl/holodorm/three, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"aQe" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"aQf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aQg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aQh" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQi" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQj" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQk" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQl" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQm" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_4) +"aQn" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_4) +"aQo" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aQp" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aQq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aQr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aQs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aQt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aQu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQC" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQE" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/computer/supplycomp{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aQF" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_3/holo) +"aQG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"aQH" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm3"; + name = "Room 3 Lock"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"aQI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aQJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aQK" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm4"; + name = "Room 4 Lock"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQO" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_4) +"aQQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_4) +"aQR" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aQS" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aQT" = ( +/obj/machinery/atmospherics/binary/algae_farm/filled{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aQU" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aQV" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aQW" = ( +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aQX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aQY" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aQZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRd" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRf" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRh" = ( +/obj/machinery/atmospherics/pipe/tank/nitrogen, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aRi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"aRj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"aRk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm3"; + name = "Room 3 (Holo)" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_3) +"aRl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aRm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm4"; + name = "Room 4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_4) +"aRn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aRo" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aRp" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aRq" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/yellowdouble, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aRr" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aRs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_4) +"aRt" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_4) +"aRu" = ( +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aRv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aRw" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aRx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aRy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aRz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aRA" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRF" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRI" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRM" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aRN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aRO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aRP" = ( +/obj/machinery/atmospherics/unary/heater, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aRQ" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aRR" = ( +/obj/machinery/computer/supplycomp/control{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aRS" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/valve/digital, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSa" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "CO2 Filter"; + tag_east = 2; + tag_north = 1; + tag_south = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSc" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "Phoron Filter"; + tag_east = 2; + tag_south = 6; + tag_west = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSd" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "N2O Filter"; + tag_east = 2; + tag_south = 7; + tag_west = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSf" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "N2/O2 Filter"; + tag_east = 4; + tag_north = 3; + tag_south = 2; + tag_west = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aSh" = ( +/obj/machinery/atmospherics/pipe/tank/nitrogen{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aSi" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_1) +"aSj" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_1/holo) +"aSk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/computer/HolodeckControl/holodorm/one, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_1) +"aSl" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_1) +"aSm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aSn" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSo" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_2) +"aSp" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSq" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/random/action_figure, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSr" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSs" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSt" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSu" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_2) +"aSv" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_2) +"aSw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aSx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aSy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aSz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aSA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aSB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aSC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aSD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSE" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSF" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/black/bordercorner, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/black/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/black/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSQ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + target_pressure = 300 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSR" = ( +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aSS" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_1/holo) +"aST" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_1) +"aSU" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm1"; + name = "Room 1 Lock"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_1) +"aSV" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm2"; + name = "Room 2 Lock"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aTa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_2) +"aTb" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_2) +"aTc" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aTd" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aTe" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aTf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aTg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aTh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTk" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTl" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTm" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTo" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTp" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTq" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTs" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTt" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTu" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTv" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/pipedispenser, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTw" = ( +/obj/item/clothing/head/soft/rainbow, +/obj/item/clothing/shoes/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/gloves/rainbow, +/obj/item/clothing/suit/storage/seromi/cloak/standard/rainbow, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aTx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_1) +"aTy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_1) +"aTz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm1"; + name = "Room 1 (Holo)" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_1) +"aTA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aTB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/loadout/loadout_misc, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aTC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aTD" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aTE" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aTF" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/orangedouble, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aTG" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aTH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_2) +"aTI" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_2) +"aTJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTN" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTO" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 8; + start_pressure = 3039.75 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTP" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTQ" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 8; + start_pressure = 1215.9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTR" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTS" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ + dir = 8; + start_pressure = 1519.88 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTT" = ( +/obj/machinery/conveyor_switch{ + id = "surfacecargo"; + name = "Surface Cargo Delivery conveyor switch"; + pixel_x = -10; + pixel_y = 14 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aTU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aTV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aTW" = ( +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aTX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aTY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTZ" = ( +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aUa" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aUb" = ( +/turf/simulated/wall, +/area/crew_quarters/showers) +"aUc" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/structure/undies_wardrobe, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/item/weapon/towel/random, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/item/device/communicator, +/obj/item/device/communicator, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aUl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aUm" = ( +/turf/simulated/wall, +/area/crew_quarters/visitor_laundry) +"aUn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 9 + }, +/obj/structure/closet/emcloset, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/gear_painter, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + dir = 10 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/crew_quarters/visitor_laundry) +"aUr" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + id_tag = null; + name = "Laundry" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor, +/area/crew_quarters/visitor_laundry) +"aUs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUu" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUv" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUw" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUx" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUy" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUz" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUA" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUB" = ( +/obj/machinery/power/apc/super{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUC" = ( +/turf/simulated/wall/r_wall, +/area/engineering/atmos_intake) +"aUD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos_intake) +"aUE" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/mask/smokable/cigarette/joint{ + desc = "Ever been to orbit?" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aUF" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aUG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/clothing/head/soft/purple, +/obj/machinery/vending/wallmed1/public{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aUO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aUP" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUR" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aUT" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/lower/atmos) +"aUU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/table/woodentable, +/obj/machinery/light_construct, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aUV" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aUW" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUX" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/item/weapon/bikehorn/rubberducky, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aVc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aVd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVf" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVh" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aVi" = ( +/obj/structure/bed/chair/comfy/black, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/visitor_laundry) +"aVk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aVl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aVm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aVn" = ( +/turf/simulated/wall, +/area/maintenance/lower/atmos) +"aVo" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aVp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aVq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aVr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aVs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aVt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aVw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aVz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVC" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVD" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVE" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "atmos_intake" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aVF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aVG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aVH" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/structure/table, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"aVI" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aVJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aVK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/bathrobe, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/structure/table/rack, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aVO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aVP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVS" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/grey/bordercorner, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVT" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVU" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + frequency = 1441; + id = "atmos_out"; + use_power = 1 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aVV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aVW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aVX" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/double, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aVY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aVZ" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWa" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWc" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWd" = ( +/obj/structure/table/borosilicate, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWe" = ( +/obj/structure/table/borosilicate, +/obj/structure/dancepole, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/bathrobe, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aWj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aWk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/random/soap, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aWl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aWm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aWn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/visitor_laundry) +"aWo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/machinery/vending/loadout/costume{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aWr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aWs" = ( +/obj/structure/closet, +/obj/random/maintenance/engineering, +/obj/random/junk, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aWt" = ( +/obj/structure/table/rack, +/obj/random/maintenance/engineering, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aWu" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aWv" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aWw" = ( +/obj/structure/table, +/obj/item/stack/material/wood{ + amount = 10 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWx" = ( +/obj/structure/closet, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/junk, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aWy" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aWz" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWA" = ( +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWB" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/bathrobe, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aWI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/light, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aWJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/random/soap, +/obj/random/soap, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aWK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aWL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aWM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/machinery/vending/fitness{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/machinery/vending/cola{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWO" = ( +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aWP" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aWQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWR" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aWS" = ( +/obj/structure/table, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWT" = ( +/obj/structure/table/bench/padded, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/maintenance/lower/atmos) +"aWV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aWX" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + dir = 9 + }, +/obj/machinery/vending/nifsoft_shop{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aXa" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/structure/table/standard, +/obj/item/weapon/storage/laundry_basket, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/grey/bordercorner2, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aXb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aXc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 6 + }, +/obj/structure/closet/crate, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aXd" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aXe" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXf" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aXg" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/metal/mait{ + name = "Maintenance Access" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXi" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXj" = ( +/obj/machinery/button/holosign{ + id = "maintbar"; + pixel_x = -24 + }, +/obj/structure/table, +/obj/item/stack/material/wood{ + amount = 10 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXk" = ( +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aXl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/wood, +/area/maintenance/lower/atmos) +"aXn" = ( +/obj/random/junk, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aXr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXt" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXw" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXy" = ( +/obj/random/cash, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXz" = ( +/turf/simulated/wall{ + can_open = 1 + }, +/area/maintenance/lower/atmos) +"aXA" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXI" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/metal/mait{ + dir = 1; + name = "Maintenance Access" + }, +/turf/simulated/floor/wood, +/area/maintenance/lower/atmos) +"aXJ" = ( +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/rust, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXP" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXQ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aXR" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/masks, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXS" = ( +/obj/machinery/door/window/southleft, +/obj/effect/decal/cleanable/vomit, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXX" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/steel, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/vending/cigarette{ + dir = 8 + }, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYd" = ( +/turf/simulated/wall, +/area/vacant/vacant_bar) +"aYe" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/maintDorm3) +"aYf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + id_tag = "maintdorm3"; + name = "Room 3" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/crew_quarters/sleep/maintDorm3) +"aYg" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/maintDorm2) +"aYh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + id_tag = "maintdorm2"; + name = "Room 2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/crew_quarters/sleep/maintDorm2) +"aYi" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/maintDorm1) +"aYj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + id_tag = "maintdorm1"; + name = "Room 1" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/crew_quarters/sleep/maintDorm1) +"aYk" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aYm" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aYo" = ( +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYp" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYr" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/vacant/vacant_bar) +"aYs" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/vacant/vacant_bar) +"aYu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/button/remote/airlock{ + id = "maintdorm3"; + name = "Room 3 Lock"; + pixel_x = 23; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aYv" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm3) +"aYx" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aYz" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aYB" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aYE" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aYF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aYG" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aYI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aYL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aYN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/vacant/vacant_bar) +"aYO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/vacant/vacant_bar) +"aYR" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm3) +"aYT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm3) +"aYY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm2) +"aZb" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aZc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aZg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aZh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/vacant/vacant_bar) +"aZi" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/vacant/vacant_bar) +"aZj" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aZl" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_construct/small, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm3) +"aZm" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/maintDorm3) +"aZo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aZp" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_construct/small, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm2) +"aZq" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/maintDorm2) +"aZu" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aZv" = ( +/obj/structure/stairs/south, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aZw" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aZz" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aZA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aZC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aZD" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"aZI" = ( +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aZK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aZL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_construct{ + dir = 1 + }, +/obj/structure/table, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aZN" = ( +/obj/structure/table, +/obj/item/stack/material/wood{ + amount = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aZO" = ( +/obj/structure/closet, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aZP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_construct{ + dir = 1 + }, +/obj/structure/table, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aZQ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aZR" = ( +/obj/structure/closet, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aZS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_construct{ + dir = 1 + }, +/obj/random/junk, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"aZU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/fancy/markers, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aZX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aZY" = ( +/obj/machinery/light, +/obj/structure/ladder/up, +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aZZ" = ( +/obj/structure/symbol/sa, +/turf/simulated/wall, +/area/vacant/vacant_bar) +"baa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"bab" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"bad" = ( +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"bah" = ( +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"baj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"bal" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"bao" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"baq" = ( +/obj/structure/sign/warning, +/turf/simulated/wall, +/area/tether/surfacebase/outside/outside1) +"bar" = ( +/obj/structure/sign/xenobio, +/turf/simulated/wall, +/area/tether/surfacebase/outside/outside1) +"bas" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"bat" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"bau" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"baA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"baB" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/iandouble, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"baC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"baD" = ( +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"baE" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/mimedouble, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"baF" = ( +/obj/structure/stairs/east, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside1) +"baG" = ( +/obj/structure/stairs/west, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside1) +"baK" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"baM" = ( +/obj/item/stack/material/steel, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"baO" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"baP" = ( +/obj/item/stack/material/steel, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"baQ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"baR" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"baS" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"baT" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"baU" = ( +/turf/simulated/mineral/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"baV" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/tether/surfacebase/outside/outside1) +"baW" = ( +/obj/structure/sign/warning/caution{ + desc = "No unarmed personnel beyond this point."; + name = "\improper DANGER - WILDERNESS" + }, +/turf/unsimulated/wall/planetary/virgo3b, +/area/tether/surfacebase/outside/outside1) +"baX" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Cargo Shop" + }, +/obj/machinery/door/firedoor/multi_tile, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"baY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "surfcargooffice"; + layer = 3.3; + name = "Cargo Office Shutters" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/cargostore/office) +"baZ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bba" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "surfcargooffice"; + layer = 3.3; + name = "Cargo Office Shutters" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/tether/surfacebase/cargostore/office) +"bbb" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Mental Health and North EVA" + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/tether/surfacebase/lowernorthhall) +"bbc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbd" = ( +/obj/random/cash, +/obj/random/contraband, +/obj/random/mre, +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbe" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbf" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/tether/surfacebase/lowernorthhall) +"bbg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbi" = ( +/obj/machinery/door/airlock/engineering{ + name = "CargoShop Substation"; + req_one_access = list(11,24,50) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbj" = ( +/turf/simulated/wall, +/area/maintenance/substation/SurfMedsubstation) +"bbk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbo" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/external) +"bbp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/tether, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbr" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Medbay Substation"; + req_one_access = list(11,24,5) + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbs" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - CargoShop"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbv" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbw" = ( +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbx" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "SurfMed Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bby" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/engineering{ + name = "Medbay Substation"; + req_one_access = list(11,24,5) + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - CargoShop Subgrid"; + name_tag = "CargoShop Subgrid" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbD" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "CargoShop Substation"; + req_one_access = list(11,24,50) + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbG" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/hallway/lower/first_west) +"bbH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/SurfMedsubstation) +"bbJ" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - SurfMed"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbL" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbM" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/SurfMedsubstation) +"bbN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbQ" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/tether/elevator) +"bbR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"bbS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbU" = ( +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - SurfMed Subgrid"; + name_tag = "SurfMed Subgrid" + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbW" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbX" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bbY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbZ" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"bca" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"bcc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/medbay, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"bcd" = ( +/turf/simulated/mineral, +/area/maintenance/lower/xenoflora) +"bcf" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/masks, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/lime/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"bch" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bci" = ( +/obj/structure/disposalpipe/segment, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bcj" = ( +/obj/machinery/door/airlock/glass{ + name = "Dressing Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcl" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcm" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcn" = ( +/obj/structure/closet/crate, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/cigarettes, +/obj/random/coin, +/obj/random/drinkbottle, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcp" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"bcq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/engi{ + id_tag = "elevescapel"; + name = "Elevator Maintenance" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "elevescapel"; + name = "elevator escape button"; + pixel_y = 32 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'CRUSH WARNING'."; + name = "\improper CRUSH WARNING"; + pixel_y = 32 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcv" = ( +/obj/structure/disposalpipe/up{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcz" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcA" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcC" = ( +/obj/structure/closet/crate, +/obj/random/unidentified_medicine, +/obj/random/firstaid, +/obj/random/drinkbottle, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcD" = ( +/obj/structure/closet/wardrobe/black, +/obj/random/maintenance/clean, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcE" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcG" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcH" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcK" = ( +/obj/structure/closet/wardrobe/xenos, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcL" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/light/small, +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 6 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"bcQ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "brig_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westleft{ + req_access = list(2) + }, +/obj/machinery/door/window/brigdoor/eastright{ + req_access = list(2) + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"bcS" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/cargo, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bcT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "rnd_s_airlock_pump" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled, +/area/rnd/external) +"bcV" = ( +/obj/effect/landmark{ + name = "droppod_landing" + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside1) +"bcY" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bcZ" = ( +/obj/machinery/computer/HolodeckControl{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bda" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdb" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/holodeck_control) +"bdc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bdd" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bde" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bdg" = ( +/obj/machinery/door/airlock{ + name = "Holodeck" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/holodeck_control) +"bdh" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdi" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdj" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bdk" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck" + }, +/turf/simulated/floor, +/area/holodeck_control) +"bdl" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdn" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bdo" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdp" = ( +/obj/machinery/button/windowtint{ + id = "holodeck"; + pixel_x = 35; + range = 14; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + pixel_x = 22; + report_danger_level = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdq" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/item/weapon/paper{ + info = "Brusies sustained in the holodeck can be healed simply by sleeping."; + name = "Holodeck Disclaimer" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bds" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bdt" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Holodeck" + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/holodeck_control) +"bdw" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdz" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/structure/sink/kitchen{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/holodeck_control) +"bdA" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdB" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bdC" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdE" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdH" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdJ" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bqI" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/brig/storage) +"byn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"byP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bzb" = ( +/obj/machinery/camera/network/security{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"bHK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"bHR" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bJz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"bMs" = ( +/obj/machinery/door/airlock/glass_external/public, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/tram) +"bMP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bOd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"bPt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bSx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/landmark/tram, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"bZC" = ( +/turf/simulated/floor/looking_glass, +/area/looking_glass/lg_1) +"ccA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"cdO" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"cpp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + id_tag = null; + name = "Laundry" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor, +/area/crew_quarters/locker/laundry_arrival) +"cqZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"csb" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"csd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"cwS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"cAR" = ( +/turf/simulated/floor/looking_glass/center, +/area/looking_glass/lg_1) +"cGJ" = ( +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"cGU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"cHW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"cIh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"cOq" = ( +/obj/random/cutout, +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"cPs" = ( +/obj/machinery/computer/looking_glass{ + lg_id = "one" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/looking_glass/lg_1) +"cPX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"cWS" = ( +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"cXW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"ddU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"dfJ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/bag/trash, +/obj/item/weapon/storage/bag/trash, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"diq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"dju" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"dlB" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/donkpockets, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"doa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"dxY" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/lowernorthhall) +"dyd" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"dCc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/northern_star{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"dCs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"dFD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"dJZ" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"dMu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"dPC" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"dYd" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"dZW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"eby" = ( +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8; + id = "Cell 2"; + name = "Cell 2"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"eeo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"efV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"eku" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/target_stake, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"ekC" = ( +/obj/structure/table/steel, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"eow" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/atm{ + pixel_x = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"epD" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"erc" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/lowernorthhall) +"evF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"exW" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"ezn" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"eAd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"eBd" = ( +/obj/machinery/cryopod, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"eDh" = ( +/obj/machinery/door/airlock{ + name = "Brig Restroom" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig/bathroom) +"eEn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"eFp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/gun/energy/laser/practice, +/obj/item/weapon/gun/projectile/shotgun/pump/rifle/practice, +/obj/item/ammo_magazine/clip/c762/practice, +/obj/item/ammo_magazine/clip/c762/practice, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"eGp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"eJQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "brig_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/brig) +"eQz" = ( +/turf/simulated/floor, +/area/maintenance/lower/mining_eva) +"eQT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"eUS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/computer/timeclock/premade/west, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"fcT" = ( +/turf/simulated/floor/looking_glass{ + dir = 8 + }, +/area/looking_glass/lg_1) +"ffD" = ( +/turf/simulated/floor/looking_glass{ + dir = 10 + }, +/area/looking_glass/lg_1) +"fmY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"fpU" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden/green, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"fqa" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/security/brig/bathroom) +"frz" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"fvH" = ( +/obj/machinery/door/airlock{ + name = "Brig Restroom" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"fyp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"fAW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"fCk" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ + dir = 4 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"fDx" = ( +/obj/machinery/door/airlock/maintenance/sec{ + name = "Riot Control"; + req_one_access = list(63,24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"fLB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"fOy" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower/security, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig/bathroom) +"fPf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"geO" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"ghg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ghr" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"gjD" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"glc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"glH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"gnt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"gnW" = ( +/obj/machinery/door/airlock/glass_security{ + id_tag = "briginner"; + name = "Brig"; + req_access = list(2); + req_one_access = newlist() + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"goJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"gud" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/toy/stickhorse, +/obj/machinery/camera/network/security{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/weapon/beach_ball/holoball, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"guV" = ( +/obj/structure/closet, +/obj/random/drinkbottle, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/vacant_site) +"gxa" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"gxM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"gAn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"gCa" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/security/lowerhall) +"gJK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"gVe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"gYx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"gZN" = ( +/turf/simulated/floor/looking_glass{ + dir = 9 + }, +/area/looking_glass/lg_1) +"hco" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"hdh" = ( +/obj/machinery/door/airlock/security{ + name = "The Hole"; + req_access = list(2) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"hmx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/machinery/holoposter{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"hoH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"hps" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"hpB" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "northciv_airlock_inner"; + locked = 1 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "northciv_airlock"; + pixel_x = 25; + pixel_y = -8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/lowernortheva) +"huE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"hzx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"hAe" = ( +/turf/simulated/floor/looking_glass{ + dir = 5 + }, +/area/looking_glass/lg_1) +"hDd" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Firing Range"; + req_access = list(1) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"hFq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"hFG" = ( +/obj/effect/landmark/looking_glass, +/turf/simulated/floor/looking_glass/center, +/area/looking_glass/lg_1) +"hMu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"hOA" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "Cell 2"; + name = "Cell 2 Door"; + pixel_x = 28; + req_access = list(1,2) + }, +/obj/machinery/door_timer/cell_3{ + id = "Cell 2"; + name = "Cell 2"; + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"hPU" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"hQg" = ( +/obj/machinery/vending/hydronutrients/brig{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"hQw" = ( +/obj/machinery/atmospherics/unary/outlet_injector, +/obj/effect/floor_decal/corner/lightorange, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"hQP" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"hTw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"hTz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"hTQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "brig_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/brig) +"hYh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/map_helper/airlock/door/int_door, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "northciv_airlock_inner"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/lowernortheva) +"icB" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"iee" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"igw" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"ilZ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"imW" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"iqO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"iti" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"iue" = ( +/turf/simulated/floor/looking_glass{ + dir = 1 + }, +/area/looking_glass/lg_1) +"iwE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"ixF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"iEk" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "Cell 1"; + name = "Cell 1 Door"; + pixel_x = 28; + req_access = list(1,2) + }, +/obj/machinery/door_timer/cell_3{ + id = "Cell 1"; + name = "Cell 1"; + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"iKy" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/lower/mining_eva) +"iUF" = ( +/obj/structure/table/steel, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"iWx" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"jbU" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"jio" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"jkt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"jnj" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"jva" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"jzW" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"jCD" = ( +/obj/machinery/door/airlock/glass_security{ + id_tag = "briginner"; + name = "Brig"; + req_access = list(2); + req_one_access = newlist() + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"jDg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"jDI" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"jIc" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"jKD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"jPk" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"jQL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/medbay, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"jSU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/mauve/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"jTQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"kbZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"kdi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"kfT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"kgk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"kjX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"klO" = ( +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"kmb" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"kuB" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"kwN" = ( +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"kxx" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"kyE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"kAm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"kAG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"kCz" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"kEs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"kKl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"kMG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Locker Room" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"kPT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"kUN" = ( +/obj/machinery/camera/network/security{ + dir = 5 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"laR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"lbu" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"ldI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"lhM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + id = "Cell 2"; + name = "Cell 2" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"loc" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"loj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"lpK" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"lry" = ( +/obj/structure/catwalk, +/obj/structure/closet, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/drinkbottle, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"lwL" = ( +/obj/machinery/door/airlock/glass_security{ + id_tag = "brigouter"; + name = "Brig"; + req_access = list(2); + req_one_access = newlist() + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"lwN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"lxo" = ( +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"lxU" = ( +/obj/machinery/holoposter, +/turf/simulated/wall, +/area/hallway/lower/first_west) +"lDW" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"lEg" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"lIj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"lLD" = ( +/obj/machinery/camera/network/security{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"lMf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"lMK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"lNp" = ( +/turf/simulated/floor/looking_glass/optional{ + dir = 4 + }, +/area/looking_glass/lg_1) +"lNt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"lQu" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/table/steel, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"lQQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"lSW" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/blanks{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/storage/box/blanks{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/ammo_magazine/clip/c762/practice, +/obj/item/ammo_magazine/clip/c762/practice, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m9mmt/practice, +/obj/item/ammo_magazine/m9mmt/practice, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"lTn" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/gasstorage) +"lTz" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"lUk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"lWT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"mhu" = ( +/obj/structure/closet/secure_closet/brig, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"mon" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"mrO" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"mrR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"mvM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"mAR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"mCe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"mGH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"mGP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"mHm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"mHO" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"mIw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"mOz" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/computer/cryopod{ + name = "asset retention console"; + pixel_y = -30 + }, +/obj/effect/landmark/tram, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"mRF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/tether/surfacebase/tram) +"mRY" = ( +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"mSz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"mTw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -22 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"mYf" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/brig) +"mYO" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"mZO" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"naC" = ( +/turf/simulated/wall/r_wall, +/area/medical/virologyisolation) +"ndH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"neZ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"nis" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"niz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"njE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"nlo" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"nmf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"nmD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"npK" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"nsp" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ntZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"nvD" = ( +/obj/machinery/seed_storage/brig{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/obj/machinery/camera/network/security{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"nwH" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"nBm" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"nBT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"nDD" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"nID" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"nKz" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "atrium" + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/lower/vacant_site) +"nOB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"ocx" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + id = "Cell 1"; + name = "Cell 1" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"odn" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/lowerhall) +"ofS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ofW" = ( +/obj/structure/disposalpipe/tagger{ + dir = 2; + name = "package tagger - Void"; + sort_tag = "Void" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"ohi" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"oib" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"okO" = ( +/obj/machinery/door/airlock{ + name = "Visitation"; + req_one_access = list(38,63) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"oli" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"oox" = ( +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"orf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/security{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"orF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_one) +"osh" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ovG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"owv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"ozx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"oKY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"oQm" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"oRz" = ( +/turf/simulated/floor/looking_glass{ + dir = 4 + }, +/area/looking_glass/lg_1) +"oTK" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"oVq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"oVr" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"paY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"pdo" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"pea" = ( +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"pjs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"plW" = ( +/obj/machinery/computer/cryopod{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"pmr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"pmV" = ( +/obj/machinery/atmospherics/unary/outlet_injector, +/obj/effect/floor_decal/corner/lightorange{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"ptv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"pyD" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Mining Maintenance Access" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/tether/surfacebase/north_stairs_one) +"pCj" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/security/brig) +"pKE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"pZb" = ( +/obj/structure/closet/wardrobe/orange, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"qfJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/landmark/tram, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"qhq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"qjE" = ( +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"qmc" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"qor" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"qoK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"qsl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"qwm" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"qwV" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/brig) +"qDR" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/wall, +/area/maintenance/substation/cargostoresubstation) +"qJT" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/gglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/gglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"qKn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Dorms & Cafe" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/tether/surfacebase/surface_one_hall) +"qOa" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"qOA" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"qPR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 26 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"qRI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"qWk" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"qWW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"qYs" = ( +/obj/machinery/door/airlock/maintenance/sec{ + name = "Riot Control"; + req_one_access = list(63,24) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"raS" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/tram, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"rww" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"rxq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"rxG" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"rzZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"rBG" = ( +/obj/structure/closet, +/obj/item/weapon/material/minihoe, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"rDJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"rHb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"rOh" = ( +/obj/machinery/disposal, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"rQe" = ( +/obj/structure/table/steel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"rRC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"rSG" = ( +/obj/machinery/light/small, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"rVb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"rVW" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"rYl" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"rYL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/cryopod/robot/door/tram, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/tram) +"rZZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"sbD" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"scf" = ( +/obj/effect/floor_decal/corner/lightorange, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"svZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"sxc" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"sya" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"szT" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"sEz" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"sHO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"sIO" = ( +/turf/simulated/floor/looking_glass{ + dir = 6 + }, +/area/looking_glass/lg_1) +"sLi" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"sQB" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"sVX" = ( +/obj/structure/table/steel, +/obj/item/weapon/material/twohanded/fireaxe/foam, +/obj/item/toy/nanotrasenballoon, +/obj/item/weapon/deck/cards, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"tak" = ( +/obj/structure/table/steel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"tdh" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"tiJ" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"trV" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/security/brig/storage) +"tvk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"tvA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"txZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"tCV" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"tEo" = ( +/obj/random/trash_pile, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"tLx" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/tram, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"tMD" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"tMP" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"tNJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"tQH" = ( +/obj/machinery/camera/network/security{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"tRA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"tRJ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "lg_1"; + name = "Looking Glass Lock"; + pixel_x = 28; + pixel_y = 28; + specialfunctions = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/looking_glass/lg_1) +"tRX" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"tTC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"tVd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ubK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"ucv" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + name = "Solitary Confinement"; + req_access = list(2) + }, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"uge" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"uiK" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/weaponsrange) +"uqH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/closet, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/cargo, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"uuu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"uxF" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Locker Room" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"uzs" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"uAv" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"uAA" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/mauve/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"uDQ" = ( +/obj/machinery/button/remote/airlock{ + id = "brigouter"; + name = "Outer Brig Doors"; + pixel_x = 24; + pixel_y = -4; + req_access = list(2) + }, +/obj/machinery/button/remote/airlock{ + id = "briginner"; + name = "Inner Brig Doors"; + pixel_x = 34; + pixel_y = -4; + req_access = list(2) + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"uEK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"uFh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"uFs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"uFS" = ( +/obj/machinery/door/airlock/security{ + name = "Brig Recreation Storage"; + req_one_access = list(63) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"uHS" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"uKS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"uOe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"uOA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"uUP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/tether/surfacebase/surface_one_hall) +"vfy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"vhI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"vih" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"vlJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/research, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"vCb" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"vDb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"vHP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"vHW" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"vRL" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"vSS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"vTn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 10 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"vVr" = ( +/obj/machinery/computer/arcade/orion_trail, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"waR" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"wjq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"wpZ" = ( +/obj/machinery/door/airlock/glass_security{ + id_tag = "brigouter"; + name = "Brig"; + req_access = list(2); + req_one_access = newlist() + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"wtD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"wwm" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"wwo" = ( +/obj/machinery/door/airlock{ + id_tag = "visitdoor"; + name = "Visitation Area"; + req_access = list(1) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"wxa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"wxV" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"wzA" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"wQS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"wRe" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"wUW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"wVB" = ( +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8; + id = "Cell 1"; + name = "Cell 1"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"wVI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"wXW" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tether/surfacebase/tram; + base_turf = /turf/simulated/floor/tiled/techfloor/grid; + docking_controller = null; + landmark_tag = "escape_station"; + name = "Tether Surface Base" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"xdV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"xgQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"xnn" = ( +/obj/machinery/holoposter, +/turf/simulated/wall, +/area/crew_quarters/visitor_laundry) +"xpP" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"xtS" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"xzn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"xAT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"xFG" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"xOH" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/looking_glass/lg_1) +"xVX" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"xYx" = ( +/obj/structure/table/steel, +/obj/machinery/microwave, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"yaU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"ybc" = ( +/obj/structure/table/steel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"ygY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) + +(1,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +asP +asQ +asQ +asQ +asQ +asQ +asR +asQ +asQ +asR +asQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(2,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGD +aaa +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(3,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aaa +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(4,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aHo +aad +aad +aad +aad +aad +aad +aad +aad +aHL +aad +aad +aHo +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(5,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(6,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGF +aad +aad +aad +aad +aad +aad +aad +aad +aad +aHL +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(7,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGG +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(8,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGG +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aHL +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(9,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGG +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(10,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGG +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aHL +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(11,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGG +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(12,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGG +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(13,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGH +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(14,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(15,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(16,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(17,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(18,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(19,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(20,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +akH +aad +aad +aad +aad +aad +aad +aad +aad +akH +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(21,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajO +ajO +ajV +ajV +ajV +ajV +ajV +ajV +ajV +ajV +ajO +ajO +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(22,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajO +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +adK +aeo +aeo +aeo +aeo +aeo +adK +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +auK +auK +auK +auK +auK +auK +aEQ +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(23,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +adK +aep +adK +aeV +aeo +afq +adK +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +aAs +aBu +aCc +aCc +aCc +aCc +aER +aib +aib +aGI +aad +aad +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(24,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +adK +aep +aep +aeo +aeo +aeo +adK +aah +aah +aah +aah +aah +aah +aah +aoq +aoq +aoq +aoq +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +aaT +auK +auK +auK +auK +auK +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(25,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +adK +adK +adK +adK +adK +adK +adK +ajS +aah +aah +aah +aah +aah +aah +aoq +aoq +aoq +aoq +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(26,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +gZN +fcT +fcT +fcT +fcT +fcT +ffD +ajS +aah +aah +aah +aah +aah +aah +aor +aoV +aoV +aqm +aci +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(27,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +iue +cAR +cAR +cAR +cAR +cAR +bZC +ajS +aah +aah +aah +aah +aiy +aiy +aiy +aoW +apH +aiy +aqT +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +abB +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(28,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +iue +cAR +cAR +cAR +cAR +cAR +bZC +ajS +aah +aah +aah +aah +aiy +aoe +aos +aoX +apI +aqn +aqT +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(29,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +iue +cAR +cAR +hFG +cAR +cAR +bZC +ajS +aah +aah +aah +aah +aiy +aof +aot +aoY +apJ +aqo +aqT +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +aAl +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baq +aad +aad +aad +baq +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(30,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +iue +cAR +cAR +cAR +cAR +cAR +bZC +ajS +aah +aah +aah +aah +aiy +aiy +aiy +aoZ +apK +aiy +aqT +aah +aah +aah +aah +aah +aah +aah +aah +agv +agv +agv +agv +agv +agv +agv +azs +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bar +aad +aad +aad +bar +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(31,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajO +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +iue +cAR +lNp +lNp +lNp +cAR +bZC +ajS +aah +agU +agU +agU +agU +agU +aou +apa +apL +aqp +aqU +aah +aah +aah +aah +aah +aah +aah +aah +agv +agL +agW +ahH +adV +aip +aiJ +azs +aaT +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baq +baF +baF +baF +baq +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(32,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +ajO +akO +ajO +bdg +bdk +bdk +bdk +bdk +bdv +ajO +bdz +ajO +hAe +oRz +cPs +xOH +tRJ +oRz +sIO +ajS +aah +agU +ahi +alE +aiz +ajo +aov +apb +apM +aqq +aqU +aah +aah +aah +aah +aah +aah +aah +aah +agv +agO +agZ +ahO +aij +ais +aiK +azs +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adK +adK +adK +adK +adK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(33,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +ajO +ajO +ajO +bdh +bdl +bcZ +bdq +bdt +bdw +ajO +ajO +ajS +ajS +ajS +ajS +ajS +atd +ajS +ajS +ajS +aah +agU +ahj +ahD +aiA +agU +agU +apc +apN +agU +aqU +aah +aah +aah +aah +aah +aah +aah +aah +agv +agR +ahf +ahP +ahP +aiH +aiL +azs +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(34,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +ajO +bda +bdi +bdm +bdo +bdp +bdu +bdx +bdy +bdA +bdC +akU +ali +sbD +abK +orF +ajS +aah +aah +aah +agU +akm +ahE +apm +agU +aow +apd +apO +aqr +aqU +acs +acs +acs +acs +asz +asz +asz +asz +asz +agV +ahh +ahQ +ain +aiI +aiM +azs +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(35,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +ajO +bdb +ajO +ajO +ajO +ajO +ajO +ajO +ajO +ajO +bdD +akM +alj +alw +ajS +ajS +ajS +aah +aah +aah +agU +agU +anw +anM +agU +aox +ape +apP +aqs +aqV +arn +arE +arP +aqV +agk +agp +atD +atD +asz +agv +aht +agv +agv +agv +agv +azs +aAx +auK +aBv +aBv +aBv +aBv +aBv +aBv +aBv +aBv +aBv +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(36,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +ajL +bdc +ajL +aah +aah +aah +aah +ajS +ajS +akD +bdE +akN +akN +alx +alM +ajS +ajS +aah +aah +aah +aah +agU +agU +agU +agU +aoy +ape +apQ +aqt +aqV +aro +arF +arQ +aqV +asA +asW +asW +aug +agC +auY +avE +awl +awS +axA +ayr +azt +aAy +aBw +aCf +aCV +aCd +aDy +aES +ajB +aFY +aGd +aBv +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(37,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +ajL +ajL +bdd +ajS +ajS +ajS +ajS +ajS +ajS +akv +akE +bdF +bdJ +bdM +bdN +alN +ame +ajS +ajS +aah +aah +aah +aah +aah +aah +agU +aoz +ape +apP +aqu +aqV +arp +arF +arR +aqV +asB +asX +asX +agw +auE +abg +avF +awm +awT +axB +ays +ays +ays +acu +ake +akf +aDz +aEe +aET +aCe +cdO +glH +aBv +aah +aah +aah +aah +aKL +aKL +aKL +aKL +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(38,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +ajL +akV +bde +ajT +ajY +akb +akh +akk +akq +akw +akE +bdG +akW +akN +aly +alN +amf +amA +ajS +aah +aah +aah +aah +aah +aah +agU +aoA +apf +apR +aqv +aqV +arq +arG +arS +aqV +asC +ags +agt +auh +auE +aDr +avG +ahT +auK +aAj +abN +abN +abN +abN +abN +abN +abN +abN +abN +abN +ygY +aGX +aBv +aah +aah +aah +aah +aKL +auW +auW +aKL +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(39,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +ajL +akZ +ajM +ajT +ajY +akb +akh +akk +akr +akx +akE +bdH +akX +akN +aly +alN +amg +amB +ajS +aah +aah +aah +ahl +ahl +ahl +agU +aoB +apg +apS +aoB +aqV +arr +arH +arT +aqV +ahl +ahl +ahl +ahl +ahl +ava +avH +awn +auK +avh +abN +aeR +aeR +aji +agF +agP +aiQ +agD +aio +abN +xgQ +ofS +aBv +aah +aah +aah +aah +aKL +aLn +aLY +aKL +aah +aah +aah +aad +aad +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(40,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +ajL +akZ +abs +ajS +ajS +ajS +ajS +ajS +ajS +aky +akE +bdI +bdK +akN +aly +alN +amh +ajS +ajS +aah +aah +aah +ahl +ahG +aiD +ajp +aoC +aph +apT +aqw +aqW +ars +arI +arU +asj +asD +asY +atE +aui +auF +avb +avI +awo +auK +avh +abN +aeR +aeR +aeR +agF +agP +ahv +ahm +aiB +abN +lMf +aGX +aBv +aBv +aBv +aBv +aBv +aKL +aLo +bbo +aKL +aNv +aoq +aad +aad +aad +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(41,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +ajL +aLm +ajQ +aah +aah +aah +aah +aah +ajS +ajS +akF +akP +bdL +alk +alz +alO +ajS +ajS +aah +aah +aah +aah +ahl +afz +aiE +ajq +anx +anP +anx +anx +aqX +anx +anP +anx +ask +anx +asZ +anx +anx +anx +anx +acJ +awp +auK +avh +abN +aeR +aeR +aeR +agF +agP +ahw +aiq +aiB +abN +lwN +icB +aFI +aFJ +aFK +aJr +aJX +aKM +aLp +aMa +aMJ +aNw +aoq +aad +aad +aad +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(42,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +ajL +akZ +abt +ajU +aki +aki +aki +akl +aah +ajS +ajS +akQ +ala +all +alA +ajS +ajS +aah +aah +aah +aah +aah +ahl +ahI +anN +aog +aoD +api +apU +aqx +aqY +aoD +arJ +arV +asl +asE +aoD +atF +auj +auG +avc +avJ +awq +auK +avh +abN +aeR +aeR +aeR +agG +aha +ahy +aiu +aiB +alS +vlJ +uAA +aHp +aHN +aIB +aJs +aJY +aKN +aLq +aMb +aMK +aNw +aoq +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(43,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +aah +ajL +bcY +bdn +bdj +bdn +bdn +bds +ajQ +aah +aah +ajS +ajS +lWT +alm +ajS +ajS +aah +aah +aah +aah +aah +aah +ahl +ahJ +anO +ajs +ahl +ahl +ahl +ahl +ahl +ahl +ahl +arW +asm +ahl +ahl +atG +auk +atH +auK +auK +auK +auK +axD +abN +aeR +aeR +aeR +agF +ahb +ahF +aih +aiv +alS +cIh +aGX +awn +awn +awn +anG +awn +aKL +aLr +bcU +aKL +aNx +aoq +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(44,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +akB +akB +akB +akB +akB +akB +akB +uiK +uiK +uiK +bcY +abu +kdi +uFh +ajL +ajS +alc +aln +ajS +aah +aah +aah +aah +aah +aah +aah +ahl +ahK +anP +ajt +ahl +apj +apj +apj +apj +apj +arK +apl +apo +apl +ata +atH +aul +auH +auK +avK +axI +awU +aAk +abN +aeR +aeR +agl +agN +ahd +ahY +aiw +aix +abN +ovG +jkt +awn +aBM +aIC +aCC +aJZ +aKL +aLs +aMd +aKL +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(45,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +eku +fPf +lIj +eGp +lIj +rxG +lxo +npK +qJT +uiK +ajM +aby +aki +akz +akG +akR +aeT +alf +akR +akR +akR +akR +akR +aah +aah +aah +ahl +ahL +anP +ajt +ahl +apk +apV +aqy +apl +apl +apl +apl +apl +apl +apl +atH +aum +auI +avd +avL +aws +abN +abN +abN +aeR +aeR +aeR +agF +ahe +ahF +aim +aiU +alT +ajd +aGX +awn +aHP +aID +aJv +aJZ +aKL +auW +auW +aKL +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(46,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +waR +dCs +waR +vhI +waR +nwH +eFp +bOd +lSW +uiK +ajM +bcY +bdn +bdn +bdB +akS +ald +alo +akR +akR +ami +amC +akR +akR +akR +akR +ahl +ahM +anP +aju +aoE +apl +apl +apl +apl +apl +apo +apl +aqy +apl +apl +atH +aun +auJ +ave +avM +aws +abN +abW +acp +afe +aeR +aeR +agG +aha +ahy +aiB +ajm +abN +kyE +aGX +adn +adn +adn +aCK +aKa +aKL +aKL +aKL +aKL +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(47,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +eku +uOA +pmr +gnt +mIw +kuB +pea +eEn +gjD +uiK +ajL +akl +aks +ajL +acj +akR +ale +alp +alr +alP +alr +alr +amS +amX +ana +ang +ans +any +anP +ajv +aoF +apX +apX +aqA +aqZ +apl +apl +apl +apl +apl +apl +atH +atH +atH +auK +avN +aws +abN +aiR +acp +afe +aeR +aeR +agF +agP +aik +aiF +akp +alS +ygY +aGX +adn +alY +adn +aCW +aKa +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(48,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +waR +vhI +waR +dCs +waR +tRX +eFp +kjX +dfJ +uiK +aah +akn +abE +jbU +akJ +akT +alg +alq +alB +alQ +amj +amD +amT +amY +anb +anh +ant +auZ +acT +adj +aoG +apn +apn +are +apl +apl +apl +apl +apl +apl +atb +apj +apj +auK +avf +awr +aws +abN +abN +abN +aeR +aeR +aeR +agF +agP +ahF +agx +alI +alU +aje +oli +adn +alZ +adn +adn +adn +adn +adn +adn +adn +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adK +adK +adK +adK +adK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(49,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +eku +rHb +lIj +dFD +lIj +dyd +klO +geO +rDJ +uiK +aah +abC +abF +abG +abF +akR +alh +als +akR +alR +ajz +amE +akR +akR +akR +akR +ahl +anz +anP +adk +aoE +apo +apo +apl +apl +aqy +apl +apl +apl +apl +apj +apj +apj +auK +avg +avP +awt +abN +acb +abN +aeR +aeR +ane +agF +agP +ail +aiG +alL +alS +ygY +hps +adn +ama +adn +amp +amv +amJ +amO +amO +adn +adn +adn +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baq +baG +baG +baG +baq +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(50,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +akB +akB +akB +akB +akB +akB +akB +akB +hDd +uiK +gCa +gCa +gCa +gCa +lTn +lTn +lTn +qYs +lTn +akR +akR +akR +akR +aah +aah +aah +ahl +anA +anP +adu +ahl +app +apl +apl +apl +aqy +apl +apl +apl +asF +apj +apj +apj +auK +avh +abm +abm +abN +abN +abN +abN +abN +abN +abN +abN +abN +abN +alS +alS +gxM +tvA +alV +amb +alV +amr +amx +amK +amO +amO +and +alY +adn +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bar +aad +aad +aad +bar +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(51,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +bqI +pZb +rBG +mhu +xFG +bqI +txZ +uge +gCa +epD +epD +gCa +fCk +fCk +exW +bJz +lTn +aah +aah +aah +aah +aah +aah +aah +ahl +ahL +acV +adF +ahl +apj +apj +apj +apl +apl +apl +apl +apl +apj +apj +apj +apj +auK +avh +abm +abn +abn +abn +acx +afg +abv +abm +aCm +akg +aDy +akj +aCV +aCV +szT +jSU +alW +amd +alW +ams +amy +amL +amL +amW +adn +adn +adn +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baq +aad +aad +aad +baq +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(52,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +bqI +sxc +ilZ +njE +qOa +bqI +kfT +fmY +gCa +epD +epD +gCa +vTn +fpU +rVW +bJz +lTn +aah +aah +aah +aah +aah +aah +aah +ahl +ahN +ada +adH +ahl +apj +apj +apj +apj +apl +apl +apl +aso +apj +apj +apj +apj +auK +avh +abm +abv +abv +abv +acD +afu +agm +abm +aCn +aDc +aDJ +aDJ +aDJ +aDJ +uOe +nis +adn +amn +amo +amt +amz +amN +amR +amR +and +alY +adn +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(53,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +bqI +sVX +mTw +rOh +gud +bqI +nOB +csd +gCa +epD +mHm +gCa +ezn +qPR +hco +ubK +lTn +aah +aah +aah +aah +aah +aah +aah +ahl +ahL +anP +adI +ahl +apj +apj +apj +apj +apl +apo +apo +asp +apj +apj +apj +apj +auK +avh +abm +abw +abw +abw +abv +afA +abv +abm +aCo +aDd +aDg +aEm +aDg +aDg +aGm +aGW +adn +amo +amo +amu +amI +amN +amR +amR +adn +adn +adn +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(54,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +bqI +bqI +uFS +trV +bqI +bqI +paY +tQH +gCa +odn +hdh +odn +lTn +fDx +lTn +lTn +lTn +odn +odn +aah +aah +aah +aah +aah +ahl +ahL +anP +adu +ahl +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +auK +avh +abm +abD +abv +abv +adz +afP +agn +agE +ajJ +aDe +aDK +aEn +aDe +aDe +aGn +aGX +adn +adn +adn +adn +adn +adn +adn +adn +adn +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(55,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +gCa +owv +kxx +kAm +jKD +jKD +dJZ +ntZ +lTz +gAn +mAR +orf +ixF +vSS +tTC +iqO +xVX +rww +odn +aah +aah +aah +aah +aah +ahl +anB +anP +adu +ahl +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +auK +avh +abm +abw +abw +abw +adM +afU +abv +abm +ajW +aDf +aDL +aDg +aFe +aDg +aGo +aGY +awn +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aOR +aOR +aOR +aOR +aOR +aOR +aOR +aOR +aOR +aOR +aTW +aTW +aTW +aTW +aVE +aTW +aTW +aTW +aTW +aTW +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(56,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aah +gCa +jTQ +nBT +hFq +hOA +vRL +hFq +iEk +vRL +hFq +neZ +diq +uDQ +mvM +fLB +dMu +jIc +wRe +odn +aah +aah +aah +aah +aah +ahl +ahR +anP +adu +ahl +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +auK +avh +abm +abv +abv +abv +adM +afU +abv +abm +ajX +aDf +aDL +aDg +aFe +aDg +aGo +aGX +awn +aBO +aBO +aBO +aah +aah +aah +aah +aah +aah +aah +aah +aOR +aPl +aPl +aQo +aQR +aRu +aPl +aPl +aPl +aOR +aTW +aUv +aUy +aUv +aUy +aUv +aUy +aUv +aUy +aTW +aTW +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(57,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +gCa +gCa +ucv +pCj +eJQ +eby +pCj +eJQ +wVB +pCj +pCj +okO +qwV +wpZ +lwL +abT +abT +abT +abT +abT +abT +abT +abT +abT +lxU +ahL +anP +adu +ahl +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +auK +avh +abm +abI +abI +abI +adM +afU +abv +abm +aka +aFf +akc +akd +aFf +aFf +aGp +aGZ +aHt +aBN +aIa +aBO +aah +aah +aah +aah +aah +aah +aah +aah +aOR +aPl +aPL +aQp +aQS +aQp +aRP +aSw +aQp +aTJ +aTX +aUw +aUR +aUR +aUR +aUR +aUR +aUR +aUR +aUy +aTW +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(58,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +gCa +iWx +qsl +pCj +mrO +kmb +pCj +tiJ +kmb +pCj +kUN +cGU +qwV +nmf +hMu +abT +bbd +auM +baZ +bbw +bbU +cGJ +bch +air +ahl +ahK +add +adJ +ahl +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +auK +avh +abm +abI +abI +abI +adN +afU +agr +abm +aCs +aDh +aDN +aEp +aFg +aFL +aGq +aHa +awn +aBP +aCv +aBO +aBO +aBO +aBO +aBO +aBO +aBO +aBO +aBO +aOR +aPl +aPM +aQq +aQT +aRv +aRP +aSx +aTc +aTK +aTX +aUx +aUA +aUx +aUA +aUx +aUA +aUx +aXd +aXd +aTW +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(59,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +gCa +kwN +lLD +pCj +qjE +bzb +pCj +qjE +bzb +pCj +bcQ +hTQ +qwV +wVI +oox +abT +amQ +bbe +bbe +bbe +bbe +bbe +bbe +bci +bbG +bbH +bbN +adu +ahl +apj +apj +apj +apj +apj +apj +apj +apu +apu +apu +apu +apu +apu +avj +abm +abm +abm +abm +abm +afX +abm +abm +awn +awn +awn +aEq +awn +awn +awn +awn +awn +aBP +aCw +aLv +aCY +aCZ +aLv +aMf +aLv +aLv +aLv +aLv +aej +aPm +aPN +aQr +aQT +aRw +aRQ +aSy +aTd +aTK +aTX +aUy +aUv +aUy +aUv +aUy +aUv +aUy +aXd +aXd +aTW +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(60,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +gCa +wwm +jio +pCj +dju +kmb +pCj +dju +kmb +pCj +jzW +hzx +qwV +wtD +wQS +abT +anp +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +ahL +bbO +adu +ahl +apu +apu +apu +apu +apu +apu +apu +apu +uqH +mHO +csb +nBm +asn +atl +axC +kCz +csb +imW +tMP +alJ +apu +aAm +aCt +aDi +aDO +aEr +aFh +aDi +aah +aah +aBO +aBP +aIG +aCX +aIa +aIa +aIa +aIa +aIa +aIa +aIa +aIa +aOR +aPn +aPO +aQs +aQT +aRx +aRQ +aSx +aTe +aTL +aTX +aUz +aUR +aUR +aUR +aUR +aUR +aUR +aUR +aUx +aTW +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(61,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +gCa +gCa +gCa +pCj +pCj +lhM +pCj +pCj +ocx +pCj +pCj +wwo +qwV +gnW +jCD +iKy +anp +aeW +amk +amF +amU +agz +agI +ani +aeW +ahS +bbP +bbS +bbG +apW +aqz +apW +arh +axS +axS +bcl +apu +agy +alb +alb +alb +alb +alC +axE +ayD +alF +alG +alH +alK +acW +aAn +aAv +aDi +aDP +aEs +aFi +aDi +aah +aah +aBO +aCh +aIG +aBO +aKh +aIa +aDx +aBO +aMM +aNy +aDM +aIa +aOR +aPo +aPP +aQr +aQT +aRy +aRv +aSz +aTf +aOR +aTW +aUA +aUx +aUA +aUx +aUA +aUx +aUA +aUx +aTW +aTW +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(62,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adK +aad +aad +aad +pCj +wjq +wjq +tdh +lQu +dPC +tdh +qmc +ofW +qoK +uzs +kEs +hMu +iKy +anp +aeW +aml +afT +afT +afT +agJ +anj +anu +anC +adh +adO +ahl +bcn +axS +bcl +azb +apW +apW +apW +bbX +aiC +alt +alv +alv +apu +bcq +avT +avT +axe +avT +avT +avT +avT +aBJ +aAw +aDi +aDQ +aEt +aFj +aDi +aah +aah +aBO +aIa +aIG +aJF +aJF +aJF +aJF +aJF +aJF +aJF +aJF +aJF +aIh +aPp +aPl +aQt +aQU +aRz +ajn +aSA +aTg +aOR +aTW +aUB +ajf +ajg +ajh +aVU +aVU +aWO +aTW +aTW +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(63,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +mYf +rQe +ybc +rzZ +hTw +hTw +hTw +hTw +hTw +uFs +ddU +wxV +nID +iKy +anp +aeW +aft +amG +afr +afr +amG +agX +ahn +ahU +anP +adu +aoH +aoH +aoH +aoH +aoH +apu +apu +apu +apu +aqb +ate +atK +atL +apu +bcr +avT +awD +axf +axS +axS +axS +aAM +aBJ +aAE +aDi +aDi +aDi +aDi +aDi +aah +aah +aBO +aIa +aIG +aJF +aKi +aKi +aLx +aMg +aMN +aNz +aNU +aNU +aIh +aPq +aPQ +aOR +aQV +aRA +aRS +aRA +aTh +aOR +aOR +aUC +aOR +aVk +aVF +aVV +aVV +aOR +aOR +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aaa +"} +(64,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +pCj +oTK +oTK +pKE +hQw +eeo +oVq +oVq +pjs +loj +vih +dlB +xYx +iKy +anp +aeW +amm +amH +afr +agA +amH +agY +ahn +ahL +anP +adu +aoI +apq +apY +aqB +aoH +aoH +bcd +bcd +apu +aqb +ate +apu +apu +apu +adr +avT +agb +agb +agb +agb +agb +agb +aBJ +aAE +aBO +aah +aah +aah +aah +aah +aah +aBO +aIa +aIG +aJF +aKj +aKT +aLy +aMh +aMO +aNA +aNA +aOw +aIh +aPr +aPR +aOR +aQW +aRB +aRT +aSB +aTi +aTM +aTM +aUD +aTM +aEu +aEA +aWq +aWq +aQW +aOR +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aaa +"} +(65,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +pCj +tdh +tdh +ccA +jDI +ptv +vVr +frz +fqa +fqa +eDh +fqa +fqa +fqa +anp +aeW +afv +amG +afr +amZ +amG +agX +ahn +ahS +anP +adW +aoI +apr +apr +apr +ara +aoH +aoH +bcd +apu +asJ +ate +apu +bcd +apu +bcs +azG +agb +agc +agc +agc +agh +agb +aBJ +aAE +aBO +aah +aah +aah +aah +aah +aah +aBO +aCi +aHc +aJF +aKk +aKk +aLz +aMi +aMP +aNB +aNV +aNV +aIh +aPs +aPS +aOR +aQX +aRC +aRU +aSC +aTj +aSC +bcP +aSC +aUS +aEv +aSC +aEB +aWr +aQW +aOR +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baW +aaa +aaa +aaa +"} +(66,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +pCj +tdh +tdh +pKE +jDI +ptv +pCj +pCj +fqa +fOy +xdV +tMD +ekC +fqa +anp +aeW +afw +afV +agu +agu +agu +ank +aho +ahV +adi +aeq +aoJ +aps +apZ +aqC +arb +art +aoH +bcd +apu +aqb +ate +apu +bcd +apu +bcB +azK +bbQ +agc +agc +agc +agc +agb +aBJ +aAE +aBO +aah +aah +aah +aah +aah +aah +aBO +aIb +aHc +aJF +aJF +aJF +aJF +aMj +aMQ +aJF +aJF +aJF +aIh +aPq +aPT +aOR +aQY +aRA +aRV +aQV +aTh +aOR +aOR +aOR +aOR +aOR +aOR +aeu +aOR +aOR +aOR +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aoq +aoq +asG +"} +(67,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +pCj +wjq +wjq +pKE +pmV +loj +plW +tdh +fqa +fOy +eAd +ozx +iUF +fqa +anp +aeW +afr +afW +amV +agB +agK +anl +aeW +ahU +aiN +aet +aoI +apr +apr +aqD +arc +aru +aoH +bcd +apu +aqb +ate +apu +bcd +apu +bcs +azU +agb +agc +agc +agc +agc +agb +aBJ +aAE +aBO +aah +aah +aah +aah +aBO +aBO +aBO +aIc +aIJ +aIh +aKl +aKU +aLA +aMk +aMR +aNC +aNW +aOx +aJI +aPt +aJI +aJI +aQy +aRD +aRW +aSD +aTk +aIh +aah +aah +aah +aah +aVn +aTZ +aWs +aVn +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aoq +aoq +asS +"} +(68,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +mYf +rQe +tak +lEg +scf +mYO +mYO +mYO +fqa +fOy +rSG +fqa +fqa +fqa +anp +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +ahW +aiO +aew +aoI +apt +aqa +aqE +ard +arv +aoH +bcd +apu +aqb +ate +apu +bcd +apu +aiW +avT +agb +agc +agc +agc +agc +agb +aBJ +aAE +aBO +aah +aah +aah +aah +aBO +aHb +aBt +aBt +aIK +aIh +aKm +aJI +aLB +aMl +aMS +aND +aNX +aND +aND +aPu +aPU +aPU +aQZ +aRE +aRX +aSE +aSE +aIh +aah +aah +aah +aah +aVn +aTZ +aWt +aVn +aVn +aVn +aVn +aVn +aVn +aVn +aVn +aVn +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aoq +aoq +asS +"} +(69,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +pCj +oTK +oTK +tdh +hQg +nvD +eBd +eBd +fqa +fOy +xtS +fvH +uAv +fqa +anp +adK +aah +aah +aah +aah +abT +abT +abT +ahX +aey +aiP +aoK +apu +apu +apu +apu +apu +apu +apu +apu +aqb +ate +apu +bcd +apu +adr +avT +agb +agb +agc +agc +agi +agb +avU +aAE +aBO +aah +aah +aah +aah +aBO +aHc +aHv +aHv +aHv +aIh +aKn +aKV +aLC +aJI +aJI +aJI +aJI +aJI +aJI +aJI +aJI +aJI +aQy +aRF +aSn +aSF +aTl +aIh +aah +aah +aah +aah +aVn +aTZ +aEC +aVn +aXe +aXy +aXR +aYk +aTZ +aTZ +aTZ +aVn +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +baV +aoq +aoq +asS +"} +(70,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +iKy +iKy +iKy +iKy +iKy +iKy +iKy +iKy +fqa +fqa +fqa +fqa +fqa +fqa +anc +abT +abT +abT +abT +abT +abT +qor +qor +pyD +bbR +aez +aoL +apv +aqb +aqb +aqb +arw +ate +arX +apu +aqb +atf +apu +bcd +apu +adr +apu +agM +axg +axT +axT +azL +aAN +agM +aAF +aBO +aah +aah +aah +aah +aBO +aHc +aHv +aCj +aIL +aIh +aKo +aJI +aLC +aJI +aJI +aJI +aJI +aJI +aJI +aPv +aPV +aQu +aRa +aRG +aRY +aSG +aTm +aIh +aIh +aIh +aah +aah +aVn +aTZ +aWv +aVn +aFk +aTZ +aXS +aTZ +aTZ +aYk +aTZ +aVn +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +baV +aoq +aoq +asS +"} +(71,1,1) = {" +aaa +acN +aib +ajC +ajC +ajC +ajC +ajC +ajC +ajD +ajE +ajE +ajE +ajE +ajE +ajE +ajF +ajC +aaj +aib +aiT +ajG +ajG +ajG +ajG +ajH +ajI +ajI +ajI +akC +ajI +ajI +asH +ajI +asI +bbc +bbT +bbT +bbT +bbc +aup +sLi +ako +ahX +anQ +aeG +ahX +ahX +ahX +apu +apu +aqb +arM +arY +apu +aqb +atg +apu +bcd +apu +awB +bcd +agM +axh +axU +ayG +azM +aAO +agM +aAw +aBO +aah +aah +aah +aah +aBO +aBl +aeb +aCk +aCx +aJG +aKp +aKW +aLD +aJI +aJI +aJI +aJI +aJI +aJI +aPw +aPw +aPw +aRb +aRH +aRZ +aSH +aTn +aTN +aTN +aIh +aah +aah +aVn +aTZ +aED +aVn +aXe +aTZ +aHj +aYk +aTZ +aTZ +aTZ +aVn +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +baV +aoq +aoq +asS +"} +(72,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +abT +abT +abT +abT +abT +abT +abT +abT +abT +abT +abT +abT +abT +adt +adt +adt +adt +adt +abT +abT +abT +tCV +akt +ahX +aiS +aeH +aoM +apw +ahX +aqF +ari +aqb +aqb +arZ +asq +asK +apu +apu +apu +apu +avi +apu +agM +agM +axV +ayH +azN +agM +agM +aAw +aBO +aah +aah +aah +aah +aBO +aHf +aHv +aIf +aIN +aIh +aKq +aJI +aLC +acv +aMT +aMT +aMT +aMT +aMT +aPx +aPW +aPx +aRc +aRI +aSa +ajw +aRM +aPG +aTY +aIh +aah +aah +aVn +aTZ +aWx +aVn +aXg +aTZ +aHu +aYm +aYk +aTZ +aTZ +aVn +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +baV +aoq +aoq +asS +"} +(73,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adK +aah +aah +aah +aah +aah +aah +aah +abT +vCb +acS +acS +acS +adt +agd +bbs +bbC +qDR +eQz +eQz +abT +wzA +aku +ahX +anR +aeH +aoM +apw +ahX +aqF +ahX +apu +apu +apu +apu +asL +ath +axS +apu +bcz +azb +bcv +axS +agM +axW +ayI +azO +agM +aAo +aAE +aBO +aah +aah +aah +aah +aBO +aHf +aHv +aCl +aIO +aIh +aKq +aJI +aLC +aMm +aMU +aMv +aNY +aJI +aJI +aMU +aPX +aQv +aNa +aJI +aMm +aSI +aTo +aTO +aTO +aIh +aUT +aVn +aVn +aTZ +aEE +aVn +aVn +aXz +aVn +aVn +aVn +aVn +aVn +aVn +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aoq +aoq +asS +"} +(74,1,1) = {" +aaa +aaa +aaa +aaa +aab +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aad +adK +adK +aad +aad +aad +aaq +aaq +aaq +aaq +aah +aah +aah +aah +abT +abH +acX +acX +adL +adt +bbg +bbu +bbD +adt +eQz +eQz +abT +tCV +akt +ahX +anS +aeK +aoN +ahX +ahX +ahX +ahX +aah +aah +aah +apu +asL +apu +axS +apu +bcA +axS +apu +apu +agM +axX +ayG +azP +agM +aAp +aAK +aBO +aah +aah +aah +aah +aBO +aHf +aHv +aIh +aIh +aIh +aIh +aIh +aLC +aMm +aMV +aNE +aNZ +aNZ +aNZ +aNZ +aNE +aQw +aNa +aJI +aSb +aMV +aTp +aIh +aIh +aIh +aTZ +aTZ +aVI +aTZ +aTZ +aTZ +aXh +aTZ +aHx +aTZ +aTZ +aTZ +aZv +aVn +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aoq +aoq +asS +"} +(75,1,1) = {" +aac +aaf +aaf +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +akK +akK +aae +aaf +aai +aaq +aaz +aaM +aaq +aef +aef +aef +aef +abT +acQ +adl +ado +aco +adt +bbh +bbv +bbE +adt +eQz +eQz +abT +tCV +ahs +ahZ +aiV +aaQ +aeO +aoO +apy +aqG +ahX +aah +aah +aah +apu +asL +apu +axS +apu +bcC +axS +apu +bcd +agM +axY +ayG +azQ +agM +aAq +aAE +aBO +aah +aah +aah +aah +aBO +aHf +aHw +aIh +aIP +aJH +aKr +aKX +aLE +aMn +aMW +aNF +aOa +aOy +aOU +aOU +aNZ +aQx +aRd +aOB +aRH +aSJ +aTn +aTP +aTP +aIh +aTZ +aWy +aTZ +aTZ +aWy +aTZ +aXi +aTZ +aYm +aHy +aYF +aTZ +aZv +aVn +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baW +aaa +aaa +aaa +"} +(76,1,1) = {" +aqR +aaf +aaf +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaf +aak +aaq +aaA +aaA +aaq +erc +dxY +ads +aeg +aef +aef +aef +aef +ajc +adt +bbi +adt +bbF +adt +abT +abT +abT +tCV +ahs +ahX +anT +aeP +ahX +apx +aqc +aqH +ahX +aah +aah +aah +apu +asL +ati +apu +apu +apu +avO +agM +agM +agM +axZ +ayJ +azR +agM +aAr +aAE +aBO +aah +aah +aah +aah +aBO +aHf +aBH +aIh +aIQ +aJI +aJI +aKY +aLF +aMo +aMX +aNG +aOb +aOz +aOV +aPy +aNZ +aQy +aNa +aJI +aSc +ajx +aRM +aPG +aTY +aIh +aWy +aTZ +aVn +aVn +aVn +aVn +aVn +aVn +aVn +aVn +aYG +aVn +aVn +aVn +aYd +aYd +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aaa +"} +(77,1,1) = {" +aqR +aaf +aaf +aaf +aaf +aaf +aaf +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaf +aal +aas +aaB +aaN +hYh +abZ +acy +adv +aeh +aeN +afI +aBx +aCq +nDD +jPk +lpK +lDW +hPU +afC +lDW +afR +lDW +hQP +anv +aia +aiX +aeX +ahX +ahX +ahX +ahX +ahX +aah +aah +aah +apu +asL +atj +atL +atL +atL +atL +agM +ahc +ahu +aya +ayG +azS +aAP +aBO +aCA +aBO +aBO +aBO +aBO +aBO +aBO +aBm +aBI +aIh +aIR +aJJ +aKs +aKZ +aLG +aMp +aMq +aMq +aOc +aJI +aJI +aJI +aNZ +aQy +aNa +aJI +aMm +aSK +aTo +aTQ +aTQ +aIh +aTZ +aTZ +aVn +aVZ +aWz +aWQ +aXj +aXA +aXX +aYo +aHY +aXk +aZw +aWc +aUF +bas +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(78,1,1) = {" +aqR +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aae +aae +aae +aae +aae +aae +aae +aaf +aaf +aat +aaC +aaP +hpB +aca +acB +adx +aes +aeQ +afJ +aBy +aef +abT +abT +aeA +alX +amq +amM +cGJ +vHW +vHW +anp +abT +ahX +aiY +afa +ahX +aah +agM +agM +agM +aah +aah +aah +apu +asL +apu +agM +agM +atL +atL +agM +agM +agM +ayb +ayG +rYl +aAQ +aAt +aCB +aDj +aAT +aAT +aBf +aFM +aBj +aBr +aBK +aIh +aIS +aJK +aKt +aLa +aLH +aMp +aMY +aNH +aOd +aJI +aJI +aMU +aNZ +aQz +aNa +aJI +aSb +aMV +aTq +aIh +aIh +aIh +aTZ +aTZ +aVn +aWa +aWA +aWA +aWA +aGu +aXY +aXY +aYI +aIY +aXY +aLf +aUU +aYd +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(79,1,1) = {" +aqR +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aam +aaq +aAB +aAJ +aaq +aef +aef +aef +aef +aeS +afM +aBz +aef +acg +abT +aeB +afd +adp +tEo +ndH +agH +bbe +ahB +bcS +ahX +aiZ +afc +ahX +aah +agM +ahc +agM +aah +aah +aah +apu +asL +apu +ahc +agM +bcp +atL +atL +atL +atj +ayc +ayG +dCc +aAR +aBQ +aAL +aBQ +aBQ +aAU +aFl +aFN +ohi +ohi +loc +aec +aIT +aJL +aKu +aJI +aJI +aMq +aMZ +aNI +aJI +aJI +aJI +aPz +aNE +aQA +aMY +aOB +aRH +aSL +aTn +aTR +aTR +aIh +aUV +aTZ +aVn +abz +aWB +aWS +aWB +aXC +aWS +aWS +aWA +aXk +aJE +aLw +aZX +bas +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(80,1,1) = {" +aqR +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aAD +aAD +aAD +aAD +aAI +aAI +aAI +aef +aeZ +afN +aBA +aCr +aCr +aCr +aCr +aCr +aGa +aGa +aGa +aHV +aGa +aGa +aGa +agM +aja +afh +agM +agM +agM +aqI +agM +agM +agM +asa +agM +asM +agM +aqI +agM +agM +agM +agM +agM +agM +abc +sQB +byP +agM +aBO +aBO +aBO +aBO +aEz +aFl +aBO +aBO +aBO +aHC +aIh +aIU +aJM +aKv +aLb +aLI +aMr +aNa +aJI +aJI +aJI +aJI +aPA +aNZ +aQx +aNa +aJI +aSd +ajy +aRM +aPG +aTY +aIh +aTZ +aTZ +aVn +aWb +aWC +aWC +aWC +aGR +aYa +aYp +aWA +aXk +aWA +aWA +aYd +aYd +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(81,1,1) = {" +aqR +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aAD +aAI +aAI +aAI +aAI +aAI +aAI +aef +aeS +afO +aBB +aCr +aDa +aDU +aEj +aCr +aGb +aGK +aHr +aIq +aJU +aLt +aGa +anD +anU +afp +aoP +apz +aqd +aqJ +arf +arx +arN +aqd +asr +asN +atk +atM +aus +auN +avm +avV +jDg +wUW +abh +abk +osh +agM +aah +aah +aah +aBO +aEw +aFl +aBO +aah +aBO +aHC +aIh +aIV +aJN +aJI +aJI +aJI +aMs +aNa +aJI +aJI +aJI +aJI +aJI +aNZ +aQy +aNa +aJI +aMm +aSM +aTo +aTS +aTS +aIh +aTZ +aEx +aVn +aWc +aWc +aWc +aWA +aHd +aYb +aYb +aHZ +aHZ +aYb +aYb +aZY +aYd +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(82,1,1) = {" +aqR +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aAD +aAI +aAI +aAI +aAI +aAI +aAI +aef +aeS +afO +aBC +aCr +aDb +aDV +aEk +aCr +aGc +aGL +aHs +aIs +aKb +aLu +aGa +aic +anV +aoh +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +asb +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +xAT +aoQ +tvk +abl +ghr +agM +aah +aah +aah +aBO +aAV +aFl +aBO +aah +aBO +aHC +aIh +aIW +aJM +aJI +aLc +aJI +aMt +aNb +aNJ +aOe +aOA +aOe +aPB +aNZ +aQy +aNa +aJI +aMm +aSN +aOf +aIh +aIh +aIh +aTZ +aEy +aVn +aWd +aWd +aWc +aXk +aXG +aWA +aXk +aXk +aIZ +aWA +aWA +aZZ +aYd +aYd +aYd +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(83,1,1) = {" +aqR +aaf +aaf +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaf +aag +aaf +aaf +aAD +aAI +aAI +aAI +aAI +aAI +aAI +aef +afi +afQ +bca +aCr +aDs +aDW +aEl +aFc +aGe +aGM +aHz +aIA +aKc +aLZ +baX +aid +goJ +aoi +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoi +awH +oQm +gVe +lNt +mon +agM +aah +aah +aah +aBO +aAY +aFl +aBO +aah +aBO +aHC +aIh +aIX +aJO +aKw +aLd +aLJ +aMr +aNc +aNK +aOf +aOf +aOf +aOf +aNZ +aQB +aRe +aRJ +aSe +aSO +aTr +aer +aTZ +aTZ +aTZ +aTZ +aVn +aWe +aWd +aWc +aWA +aXG +aXk +aWA +aWA +aWA +aWA +aXk +aWc +aWc +aWc +bas +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(84,1,1) = {" +aqR +aaf +aaf +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaf +aaf +aaf +aao +aao +aao +aao +aao +aao +aao +aao +aao +gJK +afO +aBE +aCr +aDt +aEd +aEo +aFd +aGf +aGN +aHA +aJj +aKd +aMe +aKd +aie +anW +aoj +aoR +apA +apA +apA +aoR +ary +ary +ary +ary +ary +aoR +apA +apA +apA +aoR +aoj +awH +axk +agM +aqM +agM +agM +agM +aah +aah +aBO +aEz +aFl +aBO +aah +aBO +aHD +aIh +aIh +aIh +aIh +aIh +aJI +aMs +aNc +aNE +aNZ +aNZ +aNZ +aNZ +aNE +aQC +aNa +aJI +aSb +aQy +aTs +aIh +aUa +aDR +aTZ +aTZ +aVn +aWd +aWd +aWT +aXl +aXH +aYc +aYq +aYL +aeI +aKg +aKg +baa +bat +aWB +bas +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(85,1,1) = {" +aaa +aaa +aaa +aaa +aab +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aao +aau +aaF +aaS +abd +acd +acE +adC +aao +bcc +afS +aBF +aCL +aeC +aEf +aEG +aCr +aGg +aGN +aHF +aJk +aKe +aML +aGa +aif +anW +aoj +aoS +apB +aqe +aqe +aqe +aqe +aqe +aqe +aqe +aqe +aqe +aqe +aqe +auO +aoS +aoj +awH +axl +agM +ahc +agM +aAS +agM +aah +aah +aBO +aEz +aFn +aBO +aah +aBO +aBL +aBb +aCy +aIh +aKq +aJI +aJI +aMs +aNd +aNL +aOg +aOB +aOB +aPC +aPY +aOg +aRf +aRK +aMm +aQy +aJI +aIh +aUb +aUb +aUb +aUb +aUb +aUb +aUb +aUb +aXm +aXI +aYd +aYd +aYM +aYd +aYd +aLL +bab +bau +aWB +aYd +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(86,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aap +aav +aaG +aaX +abe +acf +acH +adD +aao +afj +age +aBB +aCr +aDt +aEg +aEU +aCr +aGh +aGO +aHK +aJl +aHK +aOS +aGa +bbm +anW +aoj +aoS +apC +aqf +aqK +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqK +aqf +arg +aoS +aoj +awH +axm +ayh +ayh +ayh +ayh +ayh +ayh +ayh +ayh +aAZ +aFl +aBO +aah +aBO +aBQ +aCp +aCz +aIh +aKq +aJI +aJI +aMs +aJI +aMq +aJI +aJI +aJI +aMq +aJI +aJI +aJI +aMq +aMm +aRF +aTt +aIh +aUc +aUG +aUW +aUW +aUW +aWf +aUc +aUb +aFm +aXJ +aYd +aYr +aYN +aZh +aYd +aZI +aWc +aWS +aWw +bas +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(87,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aap +aaw +aaH +aaY +abi +ach +acL +axa +aev +afk +agg +aBB +aCr +aDB +aEh +aDC +aCr +aGi +aGP +aHM +aJt +aKf +aQE +aGa +bbk +anW +aoj +aoS +apC +aqf +aqf +aqf +aqg +aqg +aqg +aqg +aqg +aqf +aqf +aqf +arg +aoS +aoj +awH +axm +ayh +ayQ +azZ +hmx +aBR +aCD +aDl +ayh +aBa +aFl +aBO +aah +aBO +aBO +aEz +aHD +aIh +aKx +aKx +aJI +aMu +aNe +aMr +aJI +aOC +aNe +aPD +aPZ +aPZ +aPZ +ajk +aSf +aSP +aTu +aIh +aUc +aUc +aUc +aUc +aUc +aUc +aUc +aUb +aXu +aHe +aYd +aYs +aYO +aZi +aYd +aWA +aVh +aWc +aWc +bas +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(88,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aap +aax +aaK +aaK +abo +aaK +aaK +adP +aao +cPX +afO +aBB +aCr +dYd +aEh +aDC +aCr +aGj +aGQ +aGj +aGj +aKG +aGj +aGj +aii +anW +aoj +aoS +apC +aqf +aqf +arg +arz +arz +asc +arz +arz +apC +aqf +aqf +arg +aoS +aoj +awH +axn +ayh +ayR +iwE +efV +aBS +aCE +aDm +aDS +aBb +aBg +aBO +aah +aah +aBO +aEz +aHC +aIh +aKy +aLe +aLP +aMv +aNf +aNM +ajj +aOD +aOW +aPE +aOW +aQD +aRg +aRL +ajr +aSQ +aMv +aIh +aUc +aUH +aUX +aUX +aUX +aWg +aUc +aUb +aXr +aXJ +aYd +aYd +aYd +aYd +aYd +aYd +aYd +aYd +aYd +aYd +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(89,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aao +aay +aaL +aaZ +adb +acn +awy +adQ +aao +yaU +afO +aBB +aCr +aDC +aEh +aDt +aCr +aGk +aDA +aHQ +aJy +aKI +aRR +aGj +bbl +anX +aoj +aoS +apC +aqf +aqf +arg +arA +arz +aoR +arz +asO +apC +aqf +aqf +arg +aoS +aoj +awI +axo +ayh +ayS +iwE +nmD +aBT +aCF +aDn +ayh +aBc +aFl +aBO +aah +aah +aBO +aCu +aHC +aIh +aIh +aIh +aIh +aMw +aNg +aNN +aOh +aOE +aNg +aPF +aOh +aMw +aNg +aRM +aSg +aSR +aTv +aIh +aUd +aUI +aUb +aUb +aUb +aWh +aWD +aUb +aXr +aXJ +aYe +bad +aId +aZj +aZz +aNT +bad +bad +aWP +baR +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(90,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aao +aao +aao +aao +abY +aao +aao +aao +aao +yaU +afO +aBB +aCr +aDC +aEh +aEV +aFt +aGl +aGS +aHR +aJz +aKO +aTT +baY +bbm +anW +aoj +aoS +apC +aqf +aqf +arg +arz +arz +asd +arz +arz +apC +aqf +aqf +arg +aoS +aoj +awH +axp +ayh +ayT +iwE +cXW +aBT +aCG +aDo +ayh +aBd +aFl +aBO +aah +aah +aBO +aIk +aHC +aBO +aKz +aIa +aIh +aIh +aNh +aNO +aOi +aIh +aOX +aPG +aQa +aIh +aRh +aPG +aSh +aIh +aIh +aIh +aUe +aUG +aUW +aUW +aUW +aWf +aWE +aUb +aXt +aXM +aYf +aYu +aIe +aJa +aZA +aZK +aVl +bad +aWR +baR +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(91,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aeU +atc +awx +aeU +aAI +aAI +aef +yaU +afO +aBB +aCr +aDD +aEh +aDD +aCr +aGr +aGT +aHS +aJA +aKP +aVY +bba +afK +anW +aoj +aoS +apC +aqf +aqf +aqf +aqe +aqe +aqe +aqe +aqe +aqf +aqf +aqf +arg +aoS +aoj +awH +axq +ayh +ayU +gxa +qWk +ayh +ayh +ayh +ayh +aBe +aFl +aBO +aah +aah +aBO +aBO +aJb +aBO +aIa +aDk +aDI +aIh +aNh +aNP +aOi +aIh +aOX +aPH +aQa +aIh +aRh +aPH +aSh +aIh +aTw +aNE +aUe +aUc +aUc +aUc +aUc +aUc +aWE +aUb +aXr +aXP +aYe +aYe +aYR +aYe +aYe +aZL +aVm +aVW +baK +aYe +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(92,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aeU +atq +aww +aeU +aAI +aAI +aef +afl +agj +aBG +aCr +aDE +aEi +aEW +aCr +aGs +aGU +aHT +aJB +aKQ +aXQ +aGj +aCN +anW +aoj +aoS +apC +aqf +aqK +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqK +aqf +arg +aoS +aoj +awH +axm +ayi +ayV +fyp +huE +aBU +aCH +aDp +ayh +aBO +aFp +aBO +aGt +aGt +agM +aIl +aJc +agM +agM +aLg +ajl +ajl +ajl +ajl +anm +anm +anm +anm +ann +ann +ann +ann +anE +anE +anE +aSi +aUe +aUH +aUX +aUX +aUX +aWg +aWE +aUb +aXr +aXJ +aYe +aYv +aIg +aZl +aYe +aUE +aZz +aZz +aZz +baR +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(93,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +aan +aan +aan +aan +aan +atI +awz +aeU +aeU +aeU +aeU +aBD +afO +aBB +aCr +aCr +aCr +aCr +aCr +aGj +aGj +aGj +aGj +aGj +aGj +aGj +bbp +anW +aoj +aoS +apD +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +auP +aoS +aoj +awH +axm +ayh +ayW +eQT +niz +aBV +aCI +aDq +ayh +aCJ +aFq +aCJ +aBk +aCJ +agM +ayG +aJd +ayG +aKA +aLg +aLM +aMx +aLM +aLg +aOk +aOF +aOk +aOj +aQc +aQF +aQc +aQb +aSj +aSS +aSj +aSi +aUf +aUI +aUb +aUb +aUb +aWh +aWF +aUb +aFo +aXJ +aYe +aHB +aYT +aZm +aYe +aZN +aVo +aVX +bad +baR +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(94,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +aaV +aba +acO +adw +aan +atJ +awA +aeU +acZ +ade +aeU +jQL +amw +aBW +aCM +aDF +aCM +lUk +aCM +aCM +aCM +aCM +aJC +qWW +aZg +aef +bbq +anW +aoj +aoR +apA +apA +apA +aoR +ary +ary +ary +ary +ary +aoR +apA +apA +apA +aoR +aoj +awH +axm +ayh +ayh +aAf +cpp +ayh +ayh +ayh +ayh +aCJ +aFr +aCJ +aCJ +aCJ +agM +aeM +aJd +ayG +aKA +aLg +aLM +aLM +aLM +aLg +aOk +aOk +aOk +aOj +aQc +aQc +aQc +aQb +aSj +aSj +aSj +aSi +aUe +aUG +aUW +aUW +aUW +aWf +aWE +aUb +aXr +aXJ +aYe +aYe +aYe +aYe +aYe +aYe +aYe +aYe +aYe +aYe +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(95,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +abf +acl +acR +abP +aeY +atN +adX +adY +awY +adR +adU +afo +aem +afF +aBX +aDG +aBX +aBX +aFu +aGv +aBX +aBX +aJS +aKR +aKR +bbb +agf +anW +aoi +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoi +awH +axr +fAW +kKl +xzn +ldI +agM +aCJ +aCJ +aCJ +aCJ +aFs +aCJ +aCJ +aCJ +agM +ayG +aJe +aJP +aKB +aLg +aLM +aLM +aLM +aLg +aOk +aOk +aOk +aOj +aQc +aQc +aQc +aQb +aSj +aSj +aSj +aSi +aUg +aUJ +aUJ +aVq +aVJ +aVJ +aWG +aUb +aXr +aXJ +aYg +aYx +aIi +aJu +aZQ +aZO +bah +aWu +aXf +baS +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(96,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +abj +acm +acU +adA +aan +aBn +lbu +axL +adc +adS +aeU +afs +aeD +aCg +mGH +aDH +mGH +aEX +aFv +aGw +aGV +aHU +aJT +tRA +igw +bbf +ago +anY +aok +aok +aok +aok +aok +aok +aok +aok +ase +aok +aok +aok +sEz +aut +aut +avn +avW +awJ +avW +kgk +mSz +qhq +oib +agM +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +agM +aIm +aJf +aJQ +aKC +aLg +aLM +aLM +aLM +aLg +aOk +aOk +aOk +aOj +aQc +aQc +aQc +aQb +aSj +aSj +aSj +aSi +aUc +aUc +aUc +aVr +aUc +aUc +aUc +aUb +aXt +aXO +aYh +aHE +aIj +aZo +aZC +aZC +aVp +aWu +aZQ +baS +baU +baU +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(97,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +aan +abp +abq +acY +adB +aan +atP +awE +aeU +aeU +aeU +aeU +aef +aef +afE +aef +aef +aef +aEY +aFO +aGw +aHh +aef +aef +aef +aef +aef +bbt +anZ +aol +aoT +apE +aqh +aqL +doa +aqL +ajA +asf +ass +mGP +atn +cHW +auu +auQ +avo +avX +awK +aqh +vfy +qwm +ayG +qRI +agM +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +agM +aIn +aJg +aJR +aKD +aLg +aLM +aLM +aLM +aLg +aOk +aOk +aOk +aOj +aQc +aQc +aQc +aQb +aSj +aSj +aSj +aSi +aUb +aUb +aUb +aVs +aUb +aUb +aUb +aUb +aXu +aXJ +aYg +aYg +aIE +aYg +aYg +aZP +baj +baA +baM +aYg +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(98,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +aaD +abq +acq +acY +adE +aan +uHS +awF +axM +aeU +aah +aah +aah +aah +akA +aAG +aah +aef +aEZ +aFP +aGw +aHi +aef +aah +aah +aah +agM +agM +aoa +agM +agM +agM +agM +aqM +agM +aqM +agM +asg +ash +uxF +ash +kMG +ash +auR +avp +auR +awL +abx +awN +bPt +oVr +mrR +agM +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +agM +aIo +aJf +aJQ +aKE +aLg +aLM +aLM +aLM +aLg +aOk +aOk +aOk +aOj +aQc +aQc +aQc +aQb +aSj +aSj +aSj +aSi +aUh +aUK +aUY +aVt +aVK +aWi +aWH +aUb +aXv +aXJ +aYg +aYz +aIF +aZp +aYg +aZQ +bah +bah +aXn +baS +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(99,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adK +aad +aad +aar +aaE +abr +abr +adf +adT +afb +atO +awC +axN +aeU +aah +aah +aah +aah +akA +aAG +aah +aef +aFa +aFQ +aGw +aHk +aef +aah +aah +aah +ahx +anI +aob +aom +ahx +guV +apF +ahc +apF +nKz +apF +ash +ast +asU +ato +evF +ast +auR +avq +anH +awM +axs +awN +azd +ayG +jnj +agM +cOq +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aBs +agM +aEH +aJh +aJQ +aKF +aLg +aLN +aMy +aNi +aLg +aOl +aOG +aOY +aOj +aQd +aQG +aRi +aQb +aSk +aST +aTx +aSi +aUi +aUL +aUZ +aVu +aVL +aWj +aWI +aUb +aXr +aXJ +aYg +aHO +aYY +aZq +aYg +aZQ +bal +baB +bah +baS +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(100,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aar +abL +abL +abL +abL +aea +afb +atO +awC +axO +aeU +aah +aah +aah +aah +anF +aAG +aah +aef +aFb +aFZ +aGJ +aHq +aef +aah +aah +aah +ahx +ait +aoc +aon +aoU +apG +apF +aqN +apF +aqN +apF +ash +ast +asU +atp +hoH +ast +auR +avr +avZ +awN +axt +awN +azc +ayG +uEK +agM +agM +agM +aDT +aEF +agM +agM +agM +agM +agM +aIp +aJi +agM +agM +aLg +aLO +aMz +aNj +aLg +aOm +aOH +aOZ +aOj +aQe +aQH +aRj +aQb +aSl +aSU +aTy +aSi +aUj +aUM +aVa +aVx +aVM +aWk +aWJ +aUb +aXr +aXJ +aYg +aYg +aYg +aYg +aYg +aYg +aYg +aYg +aYg +aYg +baU +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(101,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aar +aaJ +abU +acC +abL +aei +afb +atO +awG +aed +aeU +aah +aah +aah +aah +akA +aAG +aah +aef +aef +aef +aef +aef +aef +aah +aah +aah +ahx +anJ +aod +aoo +ahx +aaW +aqi +aqO +mRY +aql +aql +ash +asu +asU +qOA +uuu +ast +auR +avs +awa +awN +axt +awN +azd +ayJ +mZO +agM +kbZ +cqZ +xzn +lQQ +vHP +bMP +eUS +axi +mCe +xzn +abb +rxq +aMc +aLg +aLg +aLg +aNk +aLg +aOj +aOj +aPa +aOj +aQb +aQb +aRk +aQb +aSi +aSi +aTz +aSi +aUb +aUb +aUb +aVw +aUb +aUb +aUb +aUb +aXr +aXP +aYi +aYB +aIH +aJw +aZD +aZR +baD +baD +baO +baT +baU +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(102,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aar +aaO +abV +acF +abL +aek +afb +atO +awz +aeU +aeU +axP +axP +axP +axP +akA +aAI +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +ahx +ahx +ahx +ahx +ahx +apF +apF +aqP +apF +apF +apF +ash +asv +asU +atr +atR +auv +auR +avt +awb +awN +abA +auR +aze +ayG +oKY +qKn +sHO +uKS +ayG +ayG +ayG +ayG +ayG +ayG +ayG +ayG +aJg +nsp +aKH +aLh +aNQ +aMA +aNl +aOT +aOn +aOI +aPb +aPI +aQf +aQI +aRl +aRN +aSm +aOI +aTA +aTU +aUk +aUN +aVb +aWW +aVN +aWl +aWK +aWU +aXw +aXO +aYj +aHW +aII +aJx +aKS +aKS +aVG +aZD +baP +baT +baU +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(103,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +aaR +abL +abL +abL +ael +aan +atQ +awV +axQ +adZ +ayB +ayZ +aAc +aAi +asT +aAI +adK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +apF +aqP +apF +arL +arO +asi +asw +asw +ats +atS +auw +auR +avu +awc +awN +axt +aym +azf +ayG +byn +uUP +tVd +eow +kAG +rZZ +ghg +wxa +glc +glc +glc +hTz +rVb +kPT +bbn +aLi +aLQ +aMB +aNm +aNR +aOo +aOJ +aPc +aPJ +aQg +aQJ +aNm +aRO +aVv +aOJ +aNm +aTV +aUl +aUO +aVc +aVy +aVO +aWm +aWL +aVn +aXP +aXP +aYi +aYi +aZb +aYi +aYi +aZS +bao +baC +baQ +aYi +baU +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(104,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adK +aad +aad +aan +aan +abX +acG +abX +aan +aan +acP +awW +axR +aee +ayC +aza +aAd +axP +aAz +aAI +adK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +apF +aqQ +arl +ark +apF +ash +asx +asU +atp +atT +aux +auR +avv +awd +auR +awN +auR +azg +cWS +rRC +agM +aCO +aCO +aCO +aEI +aFw +aCO +aCO +aCO +aHG +aHG +aHG +aHG +aCO +aLj +aLj +aLj +aNn +aNS +aNS +aNS +aPd +aPK +aPK +aPK +aRm +aPK +aSo +aSo +aqS +aSo +aUm +aUm +aUq +aUr +xnn +aWn +aWn +aVn +aVn +aVn +aYi +aHX +aZc +aJD +aYi +aZD +aZD +baD +aZD +baT +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(105,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +acc +acI +adm +aan +aff +aff +awX +aff +aff +ayC +azE +axP +axP +axK +aAI +adK +aah +aah +aah +aah +aah +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aah +aah +aah +apF +aqP +arl +apF +apF +ash +ast +asU +att +atU +auy +auR +avw +awe +awO +axu +auR +azh +ayG +vDb +aBY +aCP +aDu +aDX +aEJ +aFx +sya +aGx +aHl +aDu +aDu +aDu +aDu +aCS +aLj +aLR +aMC +aNo +aNS +aOp +aOK +aPe +aPK +aQh +aQK +aRn +aPK +aSp +aSV +aTC +aSo +aUn +aUp +aVd +aVz +aUt +aWo +aWM +aWV +aVn +aHg +aYi +aYE +aIM +aZu +aYi +aZU +aVH +baE +baD +baT +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(106,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +ace +acK +adq +aan +aff +auq +ady +ayd +aff +ayY +azF +axP +aeF +axK +aAI +adK +aah +aah +aah +aah +aah +aaU +agQ +ahp +ahC +akI +anf +aaU +aah +aah +aah +apF +abQ +arj +apF +aah +ash +ast +asU +atu +asU +ast +auR +avx +awf +awf +axv +auR +azi +ayG +vDb +aBY +aCQ +aDu +aDu +aDu +aFy +aFR +aFR +aFR +aFR +aIr +aJm +aJV +aDu +aLj +aLS +aMD +aNp +aNS +aOq +aOL +aPf +aPK +aQi +aQL +aRo +aPK +aSq +aSW +aTD +aSo +acw +aVS +aVe +aVA +aVQ +bHR +aUP +bcT +aVn +anK +aYi +aYi +aYi +aYi +aYi +aYi +aYi +aYi +aYi +aYi +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(107,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +aan +aan +aan +aan +aff +aur +awZ +aye +aff +axP +axP +axP +aeJ +aAz +aAI +adK +aah +aah +aah +aah +aah +aaU +agS +ahq +ajP +akY +anq +aaU +aaU +aaU +aaU +aaU +abR +ark +apF +aah +ash +ast +asU +atv +asU +ast +auR +avy +awg +awP +axw +auR +azj +ayI +svZ +aBY +aCR +aDv +aDu +aEK +aFz +aEK +aEK +aEK +aDu +atm +aCQ +aJV +aDu +aLj +aLT +aME +aNq +aNS +aOr +aOM +aPg +aPK +aQj +aQM +aRp +aPK +aSr +aSX +aTE +aSo +acz +bcT +aVf +aVB +aVf +cwS +aUP +aWX +aUm +bcD +bcI +bcK +aUm +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(108,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aff +auo +adG +ayf +aff +aAI +aAI +aAD +afy +azT +aAa +adK +aah +aah +bbj +bbj +bbj +bbj +agT +ahr +ajR +alu +anr +abJ +abM +abJ +abJ +abO +abS +arC +apF +aah +ash +asy +asV +atw +atV +auz +auR +avz +awh +awQ +axx +auR +azk +ayG +tNJ +agM +aCS +aCO +aDY +aEL +aFA +aEL +aEL +aEL +aDu +aIt +aJn +aJV +aDu +aLj +aLU +aMF +aNr +aNS +aOs +aON +aPh +aPK +aQk +aQN +aRq +aPK +aSs +aSY +aTF +aSo +afZ +bcT +aVf +aVB +aVf +cwS +aUP +aWY +aUm +bcE +aUP +bcL +aUm +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(109,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeE +afm +afm +axb +afm +afm +aeE +aeE +azV +azV +azV +aAb +adK +aah +bbj +bbj +bbI +bbM +bbj +ahg +ahz +ajZ +alD +anL +aaU +aaU +aaU +aaU +aaU +aql +arl +apF +aah +ash +ash +ash +ash +ash +ash +auR +auR +auR +auR +auR +ayn +azd +ayG +vDb +aAR +agM +aCO +aDZ +aEM +aFB +aFS +aEM +aHm +aDu +aIu +aJo +aDu +aKJ +aLj +aLV +aME +aNs +aNS +aOt +aOM +aPi +aPK +aQl +aQM +aRr +aPK +aSt +aSX +aTG +aSo +arm +bcT +aVf +aUs +aUu +iee +aVP +aWZ +bcj +bcF +aUP +bcM +aUm +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(110,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeE +afn +avk +axc +ayg +ayE +azu +azH +azW +aAe +aeE +aAz +adK +aah +bbj +bbx +bbJ +bbV +bbj +ahk +ahA +ahk +ahA +aop +aaU +aah +aah +aah +apF +aql +arl +apF +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +agM +azl +iti +vDb +aBZ +agM +aCO +aEa +aEM +aFC +aFT +aGy +aHn +aDu +aIv +aDu +aCP +aDu +aLj +aLj +aMG +aLj +aNS +aNS +aOO +aNS +aPK +aPK +aQO +aPK +aPK +aSo +aSZ +aSo +aSo +arD +bcT +aVf +aVB +aVf +cwS +aUP +aXa +aUm +bcG +aUP +bcL +aUm +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(111,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeE +afx +avl +axd +ayj +ayF +azy +azI +azX +aAg +aeE +aAz +adK +aah +bbj +bby +bbK +bbW +bbj +aaU +aaU +aaU +aaU +aBo +aaU +aah +aah +aah +apF +aql +arl +apF +aah +aah +aah +aah +atx +atx +atx +atx +atx +atx +atx +atx +atx +azm +mRF +bMs +atx +atx +aCO +aCO +acr +aFD +aFD +aFD +aCO +aeL +aIw +aDu +aCQ +aDu +aLj +aLW +aMH +aNt +aNS +aOu +aOP +aPj +aPK +aQm +aQP +aRs +aPK +aSu +aTa +aTH +aSo +aTB +bcm +aVg +aVC +aVR +laR +aWp +aXb +aUm +bcH +bcJ +bcN +aUm +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(112,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeE +afB +avQ +axj +ayk +ayK +azv +azH +azY +aAh +aeE +aAz +adK +aAW +bbr +bbz +bbL +bbY +bbj +aAG +aAG +aAG +aAG +aBp +aAD +aah +aah +apF +apF +aql +nlo +apF +aah +aah +aah +aah +atx +atW +auA +auS +avA +atW +atx +axy +ayo +azn +bSx +raS +aCa +axy +atx +aEb +auB +aFE +aFU +aLK +act +aDu +aIx +aDu +aCR +aKK +aLj +aLX +aMI +aNu +aNS +aOv +aOQ +aPk +aPK +aQn +aQQ +aRt +aPK +aSv +aTb +aTI +aSo +aUo +aUQ +bHR +aUP +aVS +aga +aWN +aXc +aUm +aUm +aUm +aUm +aUm +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(113,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeE +afD +avl +axF +ayl +avl +azw +aeE +aeE +aeE +aeE +aAA +aAH +aAX +bbj +bbA +bbj +bbj +bbj +aAG +aAG +aAG +aAI +aBp +aAD +aah +aah +apF +lry +aql +aql +apF +aah +aah +aah +aah +atx +afG +auB +auB +auB +aex +atx +axy +ayo +azn +auU +tLx +aCa +axy +atx +afY +auB +aFF +aFV +aGz +aCO +aHH +aIu +aDu +aDu +aDu +aLj +aLj +aLj +aLj +aNS +aNS +aNS +aNS +aPK +aPK +aPK +aPK +aPK +aSo +aSo +aSo +aSo +aUm +aUm +aVi +aVD +aVT +aUm +aUm +aUm +aUm +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(114,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aeE +afL +avR +axG +ayt +avl +azx +azH +azW +aAe +aeE +aAI +aAI +aAI +aAI +aBh +aBi +aBi +bHK +aBi +aBi +aBi +aBi +aBq +aAD +aah +aah +apF +aqk +aqj +aql +apF +aah +aah +aah +aah +atx +atX +auB +auT +avB +awi +atx +atx +atx +azo +qfJ +mOz +atx +atx +atx +aEc +aEN +aFG +aFV +aGA +aCO +aHI +aIy +aJp +aJW +aJW +aLk +aCP +aCO +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aUm +aVj +aVj +aVj +aUm +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(115,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aeE +agq +avS +axH +ayu +ayL +azz +azJ +azX +aAg +aeE +aAI +aAI +gYx +pdo +aAI +aAI +aAI +aAI +aAI +aAI +aAI +aAI +bbZ +aAD +aah +aah +apF +aql +aql +aql +apF +aah +aah +aah +aah +atx +atY +auB +auU +avC +auB +awR +axz +ayp +azp +mRF +rYL +ayp +aCT +aDw +auB +aEO +auU +aFW +auB +aCO +aCS +aIz +aJq +aJV +aDu +aLl +aJn +aCO +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(116,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ack +acM +acM +aen +aig +auL +xpP +ayv +ayM +bcf +azH +azY +aAh +aeE +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aah +aah +apF +apF +apF +apF +apF +aah +aah +aah +aah +atx +atZ +auC +auV +avD +awj +awj +awj +ayq +azq +jva +dZW +aCb +aCU +aCU +aCU +aEP +aFH +aFX +aGB +aCO +aHJ +aHJ +aHJ +aHJ +aHJ +aHJ +aHJ +aCO +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(117,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aeE +aeE +aeE +azH +ayw +aeE +aeE +aeE +aeE +aeE +aeE +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +atx +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +aGC +atx +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(118,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +naC +ajb +awu +lMK +ayx +ayN +azA +naC +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aah +aah +aad +aad +aah +aah +aah +aah +aah +aah +aah +aty +atx +atx +atx +atx +aty +afH +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aty +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(119,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +naC +amc +arB +arB +ayy +ayO +azB +naC +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +auD +auc +auc +atz +auc +auc +atA +atA +atA +atA +atA +auc +auc +auc +atA +auc +atA +auc +auc +auc +atA +atA +atA +atA +atA +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(120,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +naC +amP +awv +awv +ayz +ayP +azC +naC +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(121,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aah +naC +aAC +avY +axJ +ayA +ayX +azD +naC +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +wXW +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(122,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +naC +naC +naC +naC +naC +naC +naC +naC +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(123,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(124,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(125,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(126,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(127,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(128,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(129,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(130,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(131,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(132,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +atC +atC +aua +atC +atC +atC +aua +atC +atC +aue +aua +atC +atC +aua +atC +atC +atC +aua +atC +aue +atC +aua +atC +atC +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(133,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aty +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +aty +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(134,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(135,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(136,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(137,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(138,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(139,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(140,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm index 425e3d99039..3b7cead3e94 100644 --- a/maps/tether/tether-02-surface2.dmm +++ b/maps/tether/tether-02-surface2.dmm @@ -19291,7 +19291,7 @@ /obj/machinery/camera/network/outside{ dir = 5 }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside2) "aHE" = ( /turf/simulated/wall, @@ -51155,9 +51155,9 @@ adt adt adt adt -adt -adt -adt +abn +abn +abn adt adt adt @@ -51296,16 +51296,16 @@ adt adt adt adt -adt -aab -aab -aab -aab -aab -aab -aab -aab -aab +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn aab adt adt @@ -51439,13 +51439,13 @@ adt adt adt adt -aeG -aab -aab -aab -aab +abn +abn +abn aab aab +abn +abn aab aab aab @@ -51542,9 +51542,9 @@ awv ard aab aab -aab -aab -aab +abn +abn +abn ard aBa aBz @@ -51574,15 +51574,15 @@ abn abn abn abn -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aab +abn +abn +abn +abn +abn +abn +abn +abn +abn aab aab aab @@ -51685,10 +51685,10 @@ ard aab aab aab -aab -aab -aab -aab +abn +abn +abn +abn aBz aCk aDh @@ -51698,32 +51698,32 @@ aFd aFM aBz abn -aeG +abn aHD -aeG -aeG -aeG -aeG abn abn abn abn abn -aeG -aeG -aeG abn abn abn -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn aab aab aab @@ -51829,8 +51829,8 @@ aab aab aab aab -aab -aab +abn +abn aBz aCl aDi @@ -51839,33 +51839,33 @@ aEw aFe aFN aBz +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn aab -aeG -aeG -aeG -aeG -aeG -aeG -abn -abn -abn -abn -aeG -aeG -aeG -aeG -aeG -aeG -abn -abn -abn -aeG -aeG -aeG -aeG -aeG -aeG -aeG aab aab aab @@ -51972,7 +51972,7 @@ aab aab aab aab -aab +abn aBz aBz aBz @@ -51981,33 +51981,33 @@ aBz aBz aBz aBz -aab -aeG -aeG -aeG -aeG -aeG -aeG -aeG abn abn abn -aeG +abn +abn +abn +abn +abn +abn +abn +abn +abn aac aac -aeG -aeG -aeG abn abn abn -aeG -aeG -aeG -aeG -aeG -aeG -aeG +abn +abn +abn +abn +abn +abn +abn +abn +aab +aab aab aab aab @@ -52114,43 +52114,43 @@ aab aab aab aab -aab -aab -aab +abn +abn +abn adt adt adt +abn +abn +abn +abn +abn +abn +abn +abn +aac +aac +abn +abn +abn +abn +abn +aac +aac +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn aab aab aab aab -aeG -aeG -aeG -aeG -aac -aac -aeG -aeG -abn -abn -aeG -aac -aac -aeG -aeG -aeG -aeG -aeG -abn -abn -aeG -aeG -aeG -aeG -aeG -aeG -aab aab aab aab @@ -52257,41 +52257,41 @@ aab aab aab aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aeG -aeG -aeG +abn +abn +abn +abn aeG +abn +abn +abn +abn +abn +abn +abn +abn aac aac -aeG -aeG -aeG -abn -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG abn abn abn -aeG -aeG -aeG -aeG +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +aab +aab +aab +aab aab aab aab @@ -52400,40 +52400,40 @@ aab aab aab aab -aab -aab -aab -aab -aab -aab -aab -aab -aeG -aeG -aeG -aeG -aeG -aeG +abn +abn +abn aeG aeG abn abn abn abn -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG abn -aeG -aeG -aeG -aeG +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +aab +aab +aab +aab aab aab aab @@ -52543,6 +52543,35 @@ aab aab aab aab +abn +abn +aeG +aeG +aeG +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn aab aab aab @@ -52550,35 +52579,6 @@ aab aab aab aab -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -abn -abn -abn -abn -abn -abn -abn -aeG -aeG -aeG -aeG -aeG -abn -abn -aeG -aeG -aeG -aeG -aab -aab -aab aab aab aab @@ -52686,39 +52686,39 @@ aab aab aab aab +abn +aeG +aeG +aeG +aeG +aeG +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +abn +aeG +abn +abn +abn aab aab aab aab aab aab -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -abn -abn -abn -abn -abn -abn -abn -abn -abn -aeG -aeG -aeG -abn -abn -abn -abn -aeG -aeG -aab aab aab aab @@ -52828,20 +52828,21 @@ aab aab aab aab -aab -aab -aab -aab -aab -aab +abn +aeG +aeG +aeG +aeG +aeG aac aac -aeG -aeG -aeG -aeG -aeG -aeG +abn +abn +abn +abn +abn +abn +abn abn abn abn @@ -52854,12 +52855,11 @@ aeG aeG aeG aeG -aeG -aeG -abn -abn -aeG -aeG +aab +aab +aab +aab +aab aab aab aab @@ -52970,19 +52970,19 @@ aab aab aab aab -aab -aab -aab -aab -aab -aab +abn +aeG +aeG +aeG +aeG +aeG aac aac -aeG -aeG -aeG -aeG -aeG +abn +abn +abn +abn +abn abn abn abn @@ -52997,11 +52997,11 @@ aeG aeG aeG aeG -aeG -aeG -aeG -aeG -aeG +aab +aab +aab +aab +aab aab aab aab @@ -53112,12 +53112,12 @@ aab aab aab aab -aab -aab -aab -aab -aab -aab +abn +aeG +aeG +aeG +aeG +aeG aeG aeG aeG @@ -53139,11 +53139,11 @@ aeG aeG aeG aeG -aeG -aeG -aeG -aeG -aeG +aab +aab +aab +aab +aab aab aab aab @@ -53255,11 +53255,11 @@ aab aab aab aab -aab -aab -aab -aab -aab +aeG +aeG +aeG +aeG +aeG aeG aeG aeG @@ -53281,11 +53281,11 @@ aeG aeG aeG aeG -aeG -aeG -aeG -aeG -aeG +aab +aab +aab +aab +aab aab aab aab @@ -53397,37 +53397,37 @@ aab aab aab aab +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG aab aab aab aab aab -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG aab aab aab @@ -53539,37 +53539,37 @@ aab aab aab aab +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG +aeG aab aab aab aab aab -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG -aeG aab aab aab From 003797b3d2bd32c8f1ebd6372be20ba729cb1f75 Mon Sep 17 00:00:00 2001 From: VerySoft Date: Tue, 2 Feb 2021 11:27:39 -0500 Subject: [PATCH 15/19] map merge --- maps/tether/tether-01-surface1.dmm | 112862 +++++++++++++------------- 1 file changed, 56431 insertions(+), 56431 deletions(-) diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index bda71493738..45df6fec18d 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -1,56431 +1,56431 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/unsimulated/wall/planetary/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aab" = ( -/obj/structure/sign/warning/bomb_range{ - name = "\improper MINING AREA - WATCH FOR BLASTING" - }, -/turf/unsimulated/wall/planetary/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aac" = ( -/obj/effect/map_effect/portal/master/side_a{ - portal_id = "surfacemine" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aad" = ( -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aae" = ( -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aaf" = ( -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aag" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aah" = ( -/turf/simulated/mineral, -/area/tether/surfacebase/outside/outside1) -"aai" = ( -/obj/machinery/camera/network/outside{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aaj" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aak" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aal" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aam" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aan" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/mentalhealth) -"aao" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/paramed) -"aap" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/paramed) -"aaq" = ( -/turf/simulated/wall, -/area/tether/surfacebase/lowernortheva) -"aar" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized/full{ - id = "psych_office" - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/mentalhealth) -"aas" = ( -/obj/effect/map_helper/airlock/door/ext_door, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "northciv_airlock_outer"; - locked = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/lowernortheva) -"aat" = ( -/obj/machinery/access_button/airlock_exterior{ - master_tag = "northciv_airlock"; - pixel_x = 25; - pixel_y = 8 - }, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "northciv_airlock_outer"; - locked = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/lowernortheva) -"aau" = ( -/obj/machinery/suit_cycler/medical, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aav" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aax" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aay" = ( -/obj/structure/table/rack, -/obj/item/device/gps/medical{ - pixel_y = 3 - }, -/obj/item/device/gps/medical{ - pixel_x = -3 - }, -/obj/item/device/radio{ - pixel_x = 2 - }, -/obj/item/device/radio{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaz" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "northciv_airlock_scrubber" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/lowernortheva) -"aaA" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "northciv_airlock_pump" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/lowernortheva) -"aaB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernortheva) -"aaC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernortheva) -"aaD" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"aaE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"aaF" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaG" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaJ" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/white, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"aaK" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaL" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/device/multitool, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaM" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "northciv_airlock_scrubber" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/lowernortheva) -"aaN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernortheva) -"aaO" = ( -/obj/structure/filingcabinet/chestdrawer{ - name = "Medical Forms" - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"aaP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/embedded_controller/radio/airlock/phoron{ - id_tag = "northciv_airlock"; - pixel_x = 25; - pixel_y = -25 - }, -/obj/machinery/airlock_sensor/phoron{ - id_tag = "northciv_airlock_sensor"; - pixel_x = 59; - pixel_y = 11 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernortheva) -"aaQ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aaR" = ( -/obj/structure/filingcabinet/medical{ - desc = "A large cabinet with hard copy medical records."; - name = "Medical Records" - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"aaS" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aaU" = ( -/turf/simulated/wall, -/area/maintenance/lower/trash_pit) -"aaV" = ( -/obj/structure/table/woodentable, -/obj/structure/plushie/ian{ - dir = 8; - pixel_y = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"aaW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/vacant_site) -"aaX" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaY" = ( -/obj/effect/landmark/start{ - name = "Paramedic" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aaZ" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aba" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"abc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"abd" = ( -/obj/structure/table/rack, -/obj/item/weapon/rig/medical/equipped, -/obj/structure/fireaxecabinet{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"abe" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"abf" = ( -/obj/structure/table/woodentable, -/obj/item/toy/plushie/therapy/blue, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"abh" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"abi" = ( -/obj/machinery/hologram/holopad, -/obj/effect/landmark/start{ - name = "Paramedic" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"abj" = ( -/obj/structure/table/woodentable, -/obj/random/plushie, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"abl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"abm" = ( -/turf/simulated/wall, -/area/rnd/hardstorage) -"abn" = ( -/obj/structure/table/rack/steel, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"abo" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"abp" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abq" = ( -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abs" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"abt" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"abu" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"abv" = ( -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"abw" = ( -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"abx" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/security/checkpoint) -"aby" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"abz" = ( -/obj/structure/table/woodentable, -/obj/machinery/light_construct{ - dir = 1 - }, -/obj/item/glass_jar, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"abA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/security/checkpoint) -"abB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"abC" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet/crate, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/drinkbottle, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"abD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"abE" = ( -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"abF" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"abG" = ( -/obj/effect/floor_decal/rust, -/obj/random/cutout, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"abH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"abI" = ( -/obj/structure/closet/crate/plastic, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"abJ" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"abK" = ( -/obj/machinery/door/airlock/glass{ - name = "Looking Glass" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_one) -"abL" = ( -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"abM" = ( -/obj/structure/catwalk, -/obj/random/junk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"abN" = ( -/turf/simulated/wall/r_wall, -/area/rnd/testingroom) -"abO" = ( -/obj/structure/catwalk, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"abP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"abQ" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"abR" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"abS" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"abT" = ( -/turf/simulated/wall, -/area/maintenance/lower/mining_eva) -"abU" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_y = 4 - }, -/obj/item/weapon/pen{ - pixel_y = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"abV" = ( -/obj/effect/landmark/start{ - name = "Psychiatrist" - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"abW" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - name = "Research Testing Scrubber"; - use_power = 2 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"abX" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "psych_birdcage" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/mentalhealth) -"abY" = ( -/obj/machinery/door/airlock/medical{ - name = "EMT Bay" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/paramed) -"abZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aca" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"acb" = ( -/turf/simulated/mineral, -/area/rnd/testingroom) -"acc" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/grass, -/area/tether/surfacebase/medical/mentalhealth) -"acd" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit{ - pixel_y = -5 - }, -/obj/item/device/suit_cooling_unit{ - pixel_y = -5 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"ace" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/grass, -/area/tether/surfacebase/medical/mentalhealth) -"acf" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"acg" = ( -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ach" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark/start{ - name = "Paramedic" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aci" = ( -/turf/simulated/mineral, -/area/storage/surface_eva/external) -"acj" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"ack" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - use_power = 1 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"acl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acn" = ( -/obj/structure/table/rack, -/obj/item/device/defib_kit/compact/loaded, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aco" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"acp" = ( -/obj/structure/grille, -/obj/structure/railing, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "suckysucky"; - name = "Scrubber Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"acq" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acr" = ( -/obj/structure/table/marble, -/obj/machinery/door/window{ - dir = 8; - req_one_access = list(25) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"acs" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/medical/first_aid_west) -"act" = ( -/obj/machinery/door/airlock/maintenance/common{ - name = "Tram Maintenance Access" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"acu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"acv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"acw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/vending/loadout/clothing, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"acx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"acy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"acz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/vending/loadout, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"acB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/vending/wallmed_airlock{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"acC" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/machinery/button/windowtint{ - id = "psych_office"; - pixel_x = 6; - pixel_y = 10; - range = 12 - }, -/obj/machinery/button/windowtint{ - id = "psych_office_inside"; - pixel_x = 6; - range = 12 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"acD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"acE" = ( -/obj/structure/dispenser{ - phorontanks = 0 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"acF" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"acG" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Birdcage"; - req_one_access = list(64) - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"acH" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"acI" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass, -/area/tether/surfacebase/medical/mentalhealth) -"acJ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"acK" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/tether/surfacebase/medical/mentalhealth) -"acL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"acM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"acN" = ( -/obj/structure/cable/ender{ - icon_state = "1-2"; - id = "surface-mining" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"acO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acP" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"acQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"acR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acS" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"acT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"acU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"acW" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"acX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"acY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"acZ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"ada" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adb" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/paramed) -"adc" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"add" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ade" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"adf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"adh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adl" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/binary/passive_gate/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"adm" = ( -/obj/structure/bed/chair/bay/chair/padded/red/bignest{ - name = "Tweeter's Bed" - }, -/mob/living/simple_mob/animal/passive/bird/azure_tit/tweeter, -/turf/simulated/floor/grass, -/area/tether/surfacebase/medical/mentalhealth) -"adn" = ( -/turf/simulated/wall/r_wall, -/area/rnd/tankstorage) -"ado" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"adp" = ( -/obj/structure/table/rack, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"adq" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/tether/surfacebase/medical/mentalhealth) -"adr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"ads" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/lowernorthhall) -"adt" = ( -/turf/simulated/wall, -/area/maintenance/substation/cargostoresubstation) -"adu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"adw" = ( -/obj/structure/flora/pottedplant/fern, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"adx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"ady" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/access_button{ - command = "cycle_exterior"; - dir = 8; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = 25; - req_access = list(39) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"adz" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"adA" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -8; - pixel_y = -26 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"adB" = ( -/obj/structure/bookcase, -/obj/item/weapon/book/manual/anomaly_spectroscopy, -/obj/item/weapon/book/manual/anomaly_testing, -/obj/item/weapon/book/manual/materials_chemistry_analysis, -/obj/item/weapon/book/manual/resleeving, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"adC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"adD" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"adE" = ( -/obj/structure/bookcase, -/obj/item/weapon/book/manual, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/standard_operating_procedure, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"adF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 8; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = 24; - pixel_y = 25; - req_access = list(39) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"adH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adK" = ( -/turf/simulated/wall, -/area/tether/surfacebase/outside/outside1) -"adL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"adM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"adN" = ( -/obj/machinery/power/apc/high{ - dir = 4; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"adO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adP" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"adQ" = ( -/obj/structure/closet/secure_closet/paramedic, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"adR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"adS" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"adT" = ( -/obj/structure/flora/pottedplant/fern, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/medical/mentalhealth) -"adU" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_medical{ - name = "Mental Health"; - req_one_access = list() - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"adV" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"adW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"adX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay recovery room door."; - id = "Psych"; - name = "Exit Button"; - pixel_x = -26; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"adY" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "Psych"; - name = "Mental Health" - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"adZ" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"aea" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access = list(64); - req_one_access = list(5) - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"aeb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics Substation" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - layer = 1; - name = "Atmospherics Lockdown"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aec" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - layer = 1; - name = "Atmospherics Lockdown"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aed" = ( -/obj/machinery/vending/medical{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"aee" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"aef" = ( -/turf/simulated/wall, -/area/tether/surfacebase/lowernorthhall) -"aeg" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/lowernorthhall) -"aeh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aei" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"aej" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - layer = 1; - name = "Atmospherics Lockdown"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aek" = ( -/obj/structure/bed/psych, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"ael" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/clipboard, -/obj/machinery/light, -/turf/simulated/floor/carpet/blue, -/area/tether/surfacebase/medical/mentalhealth) -"aem" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aen" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/wall/r_wall, -/area/medical/virology) -"aeo" = ( -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aep" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aeq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aer" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics"; - req_access = list(24) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - layer = 1; - name = "Atmospherics Lockdown"; - opacity = 0; - open_layer = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aes" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/camera/network/cargo{ - dir = 8 - }, -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aet" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aeu" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics"; - req_access = list(24) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "atmoslockdown"; - layer = 1; - name = "Atmospherics Lockdown"; - opacity = 0; - open_layer = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aev" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/medical{ - name = "EMT Bay" - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"aew" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aex" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?"; - icon_state = "frame"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aey" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/tether/surfacebase/north_stairs_one) -"aez" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"aeB" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/tool, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"aeC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aeD" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aeE" = ( -/turf/simulated/wall/r_wall, -/area/medical/virology) -"aeF" = ( -/obj/random/junk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aeG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeH" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like its set to the kek-centeral. I wonder what else is on?"; - icon_state = "frame"; - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aeJ" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 8 - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aeK" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeL" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like it's on MTV. Now you can't blame that demi-cowgirl for working her money maker. I wonder what else is on?"; - icon_state = "frame"; - pixel_y = 32 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aeM" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like it's on the fishing channel. I wonder what else is on?"; - icon_state = "frame"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aeN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aeO" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Secondary Janitorial Closet"; - req_access = list(26) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeQ" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aeR" = ( -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"aeS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aeT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"aeU" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/lowerhall) -"aeV" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aeW" = ( -/turf/simulated/wall, -/area/storage/primary) -"aeX" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aeY" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "mentaldoor"; - name = "Mental Health"; - req_access = list(64) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/mentalhealth) -"aeZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"afb" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized/full{ - id = "psych_office_inside" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/mentalhealth) -"afc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"afd" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"afe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"aff" = ( -/turf/simulated/wall, -/area/medical/virologyaccess) -"afg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"afh" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "West Hallway" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/surface_one_hall) -"afi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afm" = ( -/turf/simulated/wall/r_wall, -/area/medical/virologyaccess) -"afn" = ( -/obj/machinery/disease2/diseaseanalyser, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"afo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"afq" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"afr" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/storage/primary) -"afs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aft" = ( -/obj/machinery/camera/network/civilian, -/obj/machinery/lapvend, -/turf/simulated/floor/tiled, -/area/storage/primary) -"afu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"afv" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/storage/primary) -"afw" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/alarm{ - pixel_y = 23 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"afx" = ( -/obj/machinery/computer/diseasesplicer, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"afy" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"afz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"afA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"afB" = ( -/obj/machinery/disease2/incubator, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"afC" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"afD" = ( -/obj/machinery/computer/centrifuge, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"afE" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/tether/surfacebase/lowernorthhall) -"afF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afG" = ( -/obj/structure/bed/chair, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"afH" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/tram) -"afI" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"afL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"afM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"afQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afR" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"afS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"afT" = ( -/turf/simulated/floor/tiled, -/area/storage/primary) -"afU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"afV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/storage/primary) -"afW" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/storage/primary) -"afX" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Research Maintenance Access"; - req_access = list(55) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/hardstorage) -"afY" = ( -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"afZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/vending/loadout/overwear, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aga" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/obj/machinery/vending/coffee{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"agb" = ( -/turf/simulated/shuttle/wall/voidcraft/green{ - hard_corner = 1 - }, -/area/tether/elevator) -"agc" = ( -/turf/simulated/floor/holofloor/tiled/dark, -/area/tether/elevator) -"agd" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "CargoShop Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"age" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"agf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"agg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"agh" = ( -/obj/turbolift_map_holder/tether{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/tether/elevator) -"agi" = ( -/obj/structure/sign/deck/first, -/turf/simulated/shuttle/wall/voidcraft/green{ - hard_corner = 1 - }, -/area/tether/elevator) -"agj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"agk" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"agl" = ( -/obj/machinery/atmospherics/unary/outlet_injector, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"agm" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"agn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"ago" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"agp" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/suspension_gen, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"agq" = ( -/obj/machinery/atmospherics/tvalve/bypass{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/virology) -"agr" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"ags" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat/science, -/obj/item/weapon/tank/emergency/oxygen/engi, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"agt" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"agu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agv" = ( -/turf/simulated/wall/r_wall, -/area/rnd/chemistry_lab) -"agw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"agx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"agy" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/rust, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"agz" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agA" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agB" = ( -/obj/machinery/vending/tool{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Xenoarch Storage"; - req_access = list(65) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenoarch_storage) -"agD" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"agE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Research Hard Storage"; - req_access = list(47) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hardstorage) -"agF" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"agG" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"agH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"agI" = ( -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/structure/reagent_dispensers/foam, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agK" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agL" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"agM" = ( -/turf/simulated/wall, -/area/tether/surfacebase/surface_one_hall) -"agN" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"agO" = ( -/obj/structure/table/glass, -/obj/machinery/status_display{ - layer = 4; - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"agP" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "gogogo"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"agQ" = ( -/obj/structure/catwalk, -/obj/random/cigarettes, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"agR" = ( -/obj/structure/table/glass, -/obj/item/weapon/tool/screwdriver, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"agS" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"agT" = ( -/obj/structure/catwalk, -/obj/random/junk, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"agU" = ( -/turf/simulated/wall, -/area/storage/surface_eva) -"agV" = ( -/obj/structure/closet/crate, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"agW" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"agX" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agY" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/storage/primary) -"agZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aha" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "gogogo"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahb" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "gogogo"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahc" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "atrium" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_one_hall) -"ahd" = ( -/obj/machinery/door/window/northleft{ - req_access = list(47) - }, -/obj/machinery/door/window/southleft{ - req_access = list(47) - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "gogogo"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahe" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "gogogo"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahg" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahi" = ( -/obj/structure/table/rack{ - dir = 4 - }, -/obj/random/maintenance/clean, -/obj/item/clothing/mask/gas, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"ahj" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"ahk" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahl" = ( -/turf/simulated/wall, -/area/hallway/lower/first_west) -"ahm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/primary) -"aho" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/primary) -"ahp" = ( -/obj/structure/catwalk, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/clean, -/obj/random/tool, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahq" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahr" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahs" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"aht" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Chemical Research" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahu" = ( -/obj/structure/grille, -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_one_hall) -"ahv" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahw" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahx" = ( -/turf/simulated/wall, -/area/tether/surfacebase/emergency_storage/atrium) -"ahy" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahz" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahA" = ( -/obj/structure/catwalk, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ahC" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ahD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"ahE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"ahF" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahI" = ( -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahJ" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahM" = ( -/obj/machinery/atm{ - pixel_y = 31 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahP" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahQ" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ahR" = ( -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ahU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ahX" = ( -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_one) -"ahY" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ahZ" = ( -/obj/structure/sign/directions/cargo{ - dir = 4 - }, -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_one) -"aia" = ( -/obj/structure/sign/directions/evac{ - dir = 4 - }, -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_one) -"aib" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aic" = ( -/obj/machinery/atm{ - pixel_y = 31 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aid" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aie" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "Cargo Shop"; - sortType = "Cargo Shop" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aif" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aig" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 9 - }, -/obj/machinery/smartfridge/secure/virology, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aih" = ( -/obj/machinery/button/remote/blast_door{ - id = "gogogo"; - name = "Test Chamber Blast Seal Control"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aii" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aij" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aik" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/item/weapon/storage/toolbox/electrical, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ail" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/prox_sensor, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/voice, -/obj/item/device/radio/electropack, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aim" = ( -/obj/machinery/button/remote/blast_door{ - id = "suckysucky"; - name = "Scrubber Blast Door-Controller"; - pixel_y = 32 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ain" = ( -/obj/machinery/chem_master{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aio" = ( -/obj/machinery/camera/network/research{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aip" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers, -/obj/item/clothing/glasses/science, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/item/weapon/storage/fancy/vials, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiq" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"air" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ais" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"ait" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aiu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiv" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aix" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiy" = ( -/turf/simulated/wall, -/area/storage/surface_eva/external) -"aiz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"aiA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"aiB" = ( -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiC" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"aiD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aiE" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aiF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiG" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/assembly/infra, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiH" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiI" = ( -/obj/structure/table/glass, -/obj/machinery/chemical_dispenser/full{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiJ" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/obj/item/device/reagent_scanner, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiK" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiL" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiM" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry_lab) -"aiN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aiO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aiP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "West Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/north_stairs_one) -"aiQ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/computer/area_atmos/tag, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiR" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - name = "Research Testing Scrubber" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiS" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aiT" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"aiU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"aiV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aiW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"aiX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aiY" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aiZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aja" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/tether/surfacebase/surface_one_hall) -"ajb" = ( -/obj/machinery/computer/arcade{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ajc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance/common{ - req_one_access = newlist() - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ajd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aje" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ajf" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - breach_detection = 0; - dir = 8; - pixel_x = 25; - rcon_setting = 3; - report_danger_level = 0 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"ajg" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"ajh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aji" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"ajj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajl" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/sleep/Dorm_7) -"ajm" = ( -/obj/machinery/vending/tool{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"ajn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"ajo" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"ajp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ajq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ajr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ajt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aju" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ajv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ajw" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/black/border, -/obj/machinery/atmospherics/binary/pump/high_power/on, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajx" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/obj/machinery/atmospherics/binary/pump/high_power/on, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajy" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/obj/machinery/atmospherics/binary/pump/high_power/on, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"ajz" = ( -/obj/structure/table/woodentable, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"ajA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ajB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ajC" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"ajD" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"ajE" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"ajF" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/railing, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"ajG" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ajH" = ( -/obj/structure/cable/heavyduty, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ajI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"ajJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ajK" = ( -/mob/living/simple_mob/animal/passive/gaslamp, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside1) -"ajL" = ( -/turf/simulated/wall, -/area/maintenance/lower/public_garden_maintenence) -"ajM" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"ajN" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "holodeck"; - name = "Holodeck Privacy Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized/full{ - id = "holodeck" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "holodeck" - }, -/turf/simulated/floor/plating, -/area/holodeck_control) -"ajO" = ( -/turf/simulated/wall, -/area/holodeck_control) -"ajP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ajQ" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"ajR" = ( -/obj/effect/floor_decal/rust, -/obj/random/cigarettes, -/obj/random/junk, -/obj/random/junk, -/obj/random/tool, -/obj/effect/landmark/teleplumb_exit, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ajS" = ( -/turf/simulated/wall, -/area/tether/surfacebase/public_garden_one) -"ajT" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"ajU" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"ajV" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "holodeck"; - name = "Holodeck Privacy Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced/polarized/full{ - id = "holodeck" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "holodeck" - }, -/turf/simulated/floor/plating, -/area/holodeck_control) -"ajW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/camera/network/research, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ajX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ajY" = ( -/turf/simulated/floor/plating, -/area/tether/surfacebase/public_garden_one) -"ajZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"aka" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"akb" = ( -/obj/structure/grille, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_one) -"akc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"akd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ake" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"akf" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"akg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"akh" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "atrium" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_one) -"aki" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"akj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"akk" = ( -/obj/structure/grille, -/obj/structure/railing, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_one) -"akl" = ( -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"akm" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"akn" = ( -/turf/simulated/mineral, -/area/maintenance/lower/public_garden_maintenence) -"ako" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"akp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"akq" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/hole/right, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"akr" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/hole, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"aks" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"akt" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"aku" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"akv" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"akw" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"akx" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"aky" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"akz" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"akA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"akB" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/weaponsrange) -"akC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"akD" = ( -/obj/machinery/alarm{ - pixel_y = 23 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akG" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/up{ - dir = 4 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"akH" = ( -/obj/machinery/camera/network/outside{ - dir = 9 - }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/holodeck_control) -"akI" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"akJ" = ( -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"akK" = ( -/turf/simulated/wall, -/area/tether/surfacebase/lowernortheva/external) -"akL" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/alphadeck) -"akM" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akN" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akO" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/machinery/camera/network/civilian, -/obj/structure/table/standard, -/obj/random/soap, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/holodeck_control) -"akP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/machinery/computer/timeclock/premade/north, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akR" = ( -/turf/simulated/wall, -/area/tether/surfacebase/public_garden) -"akS" = ( -/obj/structure/catwalk, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/tether/surfacebase/public_garden) -"akT" = ( -/obj/structure/sign/poster, -/turf/simulated/wall, -/area/tether/surfacebase/public_garden) -"akU" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/table/bench/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akV" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"akW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akX" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"akY" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"akZ" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"ala" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alb" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alc" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/tether/surfacebase/public_garden_one) -"ald" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"ale" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alh" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden) -"ali" = ( -/obj/structure/table/bench/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alj" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"all" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"aln" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Public Gardens" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/public_garden_one) -"alo" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"als" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden) -"alt" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alu" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"alv" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"aly" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alA" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alC" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alD" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"alE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"alF" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alG" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alH" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"alJ" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alK" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"alL" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/simulated/floor/tiled, -/area/rnd/testingroom) -"alM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alN" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alO" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"alP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alR" = ( -/obj/structure/bed/chair/wood, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"alS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/testingroom) -"alT" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Testing Room"; - req_access = list(47) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/testingroom) -"alU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/rnd/testingroom) -"alV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access = list(8) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/tankstorage) -"alW" = ( -/obj/structure/sign/warning/caution, -/turf/simulated/wall/r_wall, -/area/rnd/tankstorage) -"alX" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable{ - icon_state = "16-0" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"alY" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "rnd_can_store" - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/tankstorage) -"alZ" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/tankstorage) -"ama" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/computer/area_atmos/tag{ - dir = 4; - scrub_id = "rnd_can_store" - }, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled, -/area/rnd/tankstorage) -"amb" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/tankstorage) -"amc" = ( -/obj/structure/sink{ - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"amd" = ( -/obj/structure/sign/warning/nosmoking_2, -/turf/simulated/wall/r_wall, -/area/rnd/tankstorage) -"ame" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"amf" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"amg" = ( -/obj/effect/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"amh" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"ami" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/coffee{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/public_garden) -"amj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amk" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/structure/symbol/sa{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"aml" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/requests_console{ - department = "Tool Storage"; - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amm" = ( -/obj/machinery/hologram/holopad, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amn" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amo" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amq" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"amr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"ams" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amt" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amu" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amv" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amw" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"amx" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amy" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amz" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amA" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 1 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"amB" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 1 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/public_garden_one) -"amC" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/snack{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/public_garden) -"amD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amE" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amF" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amG" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amH" = ( -/obj/item/weapon/stool, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amI" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amJ" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amK" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amL" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amM" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"amN" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amO" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amP" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"amQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"amR" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amU" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amV" = ( -/obj/machinery/vending/assist{ - dir = 8 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"amW" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/tankstorage) -"amX" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"amZ" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/storage/primary) -"ana" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"anb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"anc" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"and" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/tankstorage) -"ane" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/testingroom) -"anf" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/cargo, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ang" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"anh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden) -"ani" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = -24 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"anj" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"ank" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"anl" = ( -/obj/machinery/disposal, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"anm" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/sleep/Dorm_5) -"ann" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/sleep/Dorm_3) -"ano" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/outside/outside1) -"anp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"anq" = ( -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ - pixel_y = 13 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = 9 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = -7; - pixel_y = -7 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ - pixel_x = -10; - pixel_y = 5 - }, -/obj/item/trash/raisins{ - desc = "This trash looks like it's had one too many."; - name = "Wasted waste" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"anr" = ( -/obj/structure/catwalk, -/obj/random/cigarettes, -/obj/random/junk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"ans" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Public Gardens" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/hallway/lower/first_west) -"ant" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/hallway/lower/first_west) -"anu" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/primary) -"anv" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"anw" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"anx" = ( -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"any" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anA" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"anE" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/sleep/Dorm_1) -"anF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"anG" = ( -/obj/machinery/door/airlock/maintenance/rnd{ - req_one_access = list(47,24) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/rnd/hallway) -"anH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/bed/chair/office/dark, -/obj/structure/barricade/cutout/ntsec, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"anI" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"anJ" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"anK" = ( -/obj/structure/symbol/lo, -/turf/simulated/wall{ - can_open = 1 - }, -/area/maintenance/lower/atmos) -"anL" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"anM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"anN" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anO" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"anQ" = ( -/obj/machinery/computer/guestpass{ - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"anR" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"anS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/tether, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"anT" = ( -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"anU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - name = "Primary Tool Storage"; - sortType = "Primary Tool Storage" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"anV" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"anW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"anX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"anY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"anZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aoa" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/int{ - name = "Emergency Storage" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/surface_one_hall) -"aob" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aoc" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aod" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aoe" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "civ_airlock_scrubber" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/surface_eva/external) -"aof" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "civ_airlock_scrubber" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/surface_eva/external) -"aog" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aoh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aoi" = ( -/obj/structure/flora/pottedplant, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"aoj" = ( -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"aok" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aol" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/symbol/es{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aom" = ( -/obj/structure/closet/firecloset/full/double, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aon" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aoo" = ( -/obj/structure/table/standard, -/obj/item/device/t_scanner, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aop" = ( -/obj/structure/catwalk, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance/clean, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/trash_pit) -"aoq" = ( -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aor" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/storage/surface_eva/external) -"aos" = ( -/obj/structure/railing, -/obj/structure/grille, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "civ_airlock_pump" - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled, -/area/storage/surface_eva/external) -"aot" = ( -/obj/structure/railing, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/grille, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "civ_airlock_pump" - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled, -/area/storage/surface_eva/external) -"aou" = ( -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/civilian, -/obj/structure/sign/nosmoking_2{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"aov" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central6, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/vending/wallmed_airlock{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"aow" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aox" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aoy" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/door/window/southleft, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/structure/sign/nosmoking_2{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aoz" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/door/window/southright, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/weapon/tank/emergency/oxygen/engi, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aoA" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/weapon/shovel, -/obj/item/weapon/shovel, -/obj/item/weapon/soap, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aoB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"aoC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aoD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aoE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/lower/first_west) -"aoF" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/hallway/lower/first_west) -"aoG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/hallway/lower/first_west) -"aoH" = ( -/turf/simulated/wall, -/area/storage/art) -"aoI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/art) -"aoJ" = ( -/obj/machinery/door/airlock/glass{ - name = "Art Storage" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/art) -"aoK" = ( -/obj/structure/sign/directions/evac{ - name = "\improper Secondary Evacuation Route" - }, -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_one) -"aoL" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/north_stairs_one) -"aoM" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aoN" = ( -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - dir = 1; - pixel_y = 3 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = -4 - }, -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_y = -10 - }, -/turf/simulated/wall, -/area/tether/surfacebase/north_stairs_one) -"aoO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aoP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aoQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aoR" = ( -/obj/machinery/light/flamp/noshade, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"aoS" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"aoT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aoU" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/atrium) -"aoV" = ( -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/storage/surface_eva/external) -"aoW" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ_airlock_outer"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/surface_eva/external) -"aoX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva/external) -"aoY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/storage/surface_eva/external) -"aoZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ_airlock_inner"; - locked = 1 - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "civ_airlock"; - pixel_x = 8; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/surface_eva/external) -"apa" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/storage/surface_eva) -"apd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"ape" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/storage/surface_eva) -"aph" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"api" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"apj" = ( -/turf/simulated/mineral, -/area/vacant/vacant_site) -"apk" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/obj/random/drinkbottle, -/obj/machinery/light_switch{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"apl" = ( -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"apm" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/binary/passive_gate/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/storage/surface_eva) -"apn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"apo" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"app" = ( -/obj/structure/table/rack, -/obj/random/cigarettes, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"apq" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/fancy/crayons, -/obj/item/weapon/storage/fancy/crayons, -/turf/simulated/floor/tiled, -/area/storage/art) -"apr" = ( -/turf/simulated/floor/tiled, -/area/storage/art) -"aps" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"apt" = ( -/obj/structure/table/standard, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/turf/simulated/floor/tiled, -/area/storage/art) -"apu" = ( -/turf/simulated/wall, -/area/maintenance/lower/xenoflora) -"apv" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"apw" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"apx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"apy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"apz" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"apA" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"apB" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"apC" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"apD" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"apE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"apF" = ( -/turf/simulated/wall, -/area/maintenance/lower/vacant_site) -"apG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/vacant_site) -"apH" = ( -/obj/machinery/access_button/airlock_exterior{ - master_tag = "civ_airlock"; - pixel_x = -8; - pixel_y = -25 - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ_airlock_outer"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/surface_eva/external) -"apI" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva/external) -"apJ" = ( -/obj/machinery/embedded_controller/radio/airlock/phoron{ - dir = 8; - id_tag = "civ_airlock"; - pixel_x = 25; - pixel_y = -30 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/airlock_sensor/phoron{ - id_tag = "civ_airlock_sensor"; - pixel_x = 25; - pixel_y = -40 - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/tiled, -/area/storage/surface_eva/external) -"apK" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "civ_airlock_inner"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_grid, -/area/storage/surface_eva/external) -"apL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apN" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Surface EVA" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/turf/simulated/floor/tiled/monofloor, -/area/storage/surface_eva) -"apO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apQ" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"apS" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Surface EVA" - }, -/turf/simulated/floor/tiled/monofloor, -/area/storage/surface_eva) -"apT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"apU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"apV" = ( -/obj/effect/floor_decal/rust, -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"apW" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"apX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"apY" = ( -/obj/structure/table/standard, -/obj/item/device/camera_film{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/device/camera_film{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"apZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/storage/art) -"aqa" = ( -/obj/structure/table/standard, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"aqb" = ( -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"aqc" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aqd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aqe" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"aqf" = ( -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"aqg" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"aqh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aqi" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/vacant_site) -"aqj" = ( -/obj/structure/ladder/up, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"aqk" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"aql" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"aqm" = ( -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/storage/surface_eva/external) -"aqn" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "civ_airlock_scrubber" - }, -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/surface_eva/external) -"aqo" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "civ_airlock_scrubber" - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/surface_eva/external) -"aqp" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/structure/curtain/open/shower, -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/monotile, -/area/storage/surface_eva) -"aqq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/storage/surface_eva) -"aqr" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - pixel_x = 12; - pixel_y = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aqs" = ( -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = -3 - }, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/status_display{ - layer = 4; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aqt" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/rack{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/northleft, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aqu" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/rack{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/northright, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/weapon/tank/emergency/oxygen/engi, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aqv" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/item/weapon/tool/crowbar/red, -/obj/item/weapon/tool/crowbar/red, -/obj/item/weapon/tool/crowbar/red, -/obj/item/weapon/tool/crowbar/red, -/obj/item/weapon/tool/crowbar/red, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/obj/item/clothing/glasses/goggles, -/obj/item/clothing/glasses/goggles, -/turf/simulated/floor/tiled/dark, -/area/storage/surface_eva) -"aqw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aqx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aqy" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"aqz" = ( -/obj/structure/disposalpipe/segment, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"aqA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/cap/visible/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"aqB" = ( -/obj/structure/table/standard, -/obj/item/device/camera, -/obj/item/device/camera{ - pixel_x = 3; - pixel_y = -4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"aqC" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/storage/art) -"aqD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"aqE" = ( -/obj/structure/table/standard, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/hand_labeler, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"aqF" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor, -/area/tether/surfacebase/north_stairs_one) -"aqG" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aqH" = ( -/obj/machinery/light/small, -/obj/structure/mopbucket, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"aqI" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_one_hall) -"aqJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aqK" = ( -/mob/living/simple_mob/animal/passive/fish/koi/poisonous, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"aqL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aqM" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/surface_one_hall) -"aqN" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/vacant_site) -"aqO" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"aqP" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"aqQ" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"aqR" = ( -/obj/effect/map_effect/portal/line/side_a, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/lowernortheva/external) -"aqS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm2"; - name = "Room 2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_2) -"aqT" = ( -/turf/simulated/wall/r_wall, -/area/storage/surface_eva/external) -"aqU" = ( -/turf/simulated/wall/r_wall, -/area/storage/surface_eva) -"aqV" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/first_aid_west) -"aqW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aqX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aqY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/tether{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"aqZ" = ( -/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"ara" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"arb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"arc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"ard" = ( -/obj/structure/table/standard, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/device/taperecorder, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"are" = ( -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"arf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"arg" = ( -/obj/structure/railing, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"arh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"ari" = ( -/turf/simulated/floor, -/area/maintenance/lower/xenoflora) -"arj" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"ark" = ( -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"arl" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"arm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/vending/loadout/accessory, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"arn" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/device/radio/emergency, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"aro" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arp" = ( -/obj/machinery/sleep_console, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arq" = ( -/obj/machinery/vending/wallmed1/public{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arr" = ( -/obj/structure/sign/redcross{ - name = "FirstAid" - }, -/turf/simulated/wall, -/area/tether/surfacebase/medical/first_aid_west) -"ars" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"art" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box, -/obj/item/weapon/storage/box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/weapon/tape_roll{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/tape_roll, -/turf/simulated/floor/tiled, -/area/storage/art) -"aru" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/blue{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/weapon/pen/red{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/storage/art) -"arv" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"arw" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"arx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/tether{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ary" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"arz" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"arA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"arB" = ( -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"arC" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"arD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/vending/loadout/gadget, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"arE" = ( -/obj/structure/table/rack, -/obj/item/bodybag/cryobag, -/obj/item/weapon/tool/crowbar, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/item/device/defib_kit/loaded, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arG" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arH" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "First-Aid Station"; - req_one_access = newlist() - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/medical/first_aid_west) -"arI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"arJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"arK" = ( -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"arL" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"arM" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"arN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/computer/guestpass{ - dir = 4; - pixel_x = -28 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"arO" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"arP" = ( -/obj/structure/table/glass, -/obj/item/device/radio/phone/medbay{ - name = "Medical Emergency Phone" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arQ" = ( -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arR" = ( -/obj/structure/table/glass, -/obj/random/medical/lite, -/obj/item/device/radio/intercom/department/medbay, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 28 - }, -/obj/structure/bed/roller, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/first_aid_west) -"arT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tether/surfacebase/medical/first_aid_west) -"arU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"arV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"arW" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/hallway/lower/first_west) -"arX" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/up{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"arY" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"arZ" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"asa" = ( -/obj/structure/sign/directions/evac, -/turf/simulated/wall, -/area/tether/surfacebase/surface_one_hall) -"asb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"asc" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"asd" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"ase" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"asf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"asg" = ( -/obj/structure/sign/directions/evac, -/turf/simulated/wall, -/area/crew_quarters/locker) -"ash" = ( -/turf/simulated/wall, -/area/crew_quarters/locker) -"asi" = ( -/obj/machinery/door/airlock/maintenance/common{ - name = "Locker Room Maintenance" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/locker) -"asj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ask" = ( -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"asl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"asm" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/turf/simulated/floor/tiled/monofloor, -/area/hallway/lower/first_west) -"asn" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/obj/random/cutout, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"aso" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"asp" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"asq" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"asr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ass" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ast" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/clothing/shoes/black, -/turf/simulated/floor/holofloor/tiled/dark, -/area/crew_quarters/locker) -"asu" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/clothing/shoes/black, -/turf/simulated/floor/holofloor/tiled/dark, -/area/crew_quarters/locker) -"asv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"asw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"asx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"asy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/structure/undies_wardrobe, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"asz" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenoarch_storage) -"asA" = ( -/obj/item/weapon/storage/excavation, -/obj/item/weapon/pickaxe, -/obj/item/weapon/tool/wrench, -/obj/item/device/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"asB" = ( -/obj/item/weapon/storage/excavation, -/obj/item/weapon/pickaxe, -/obj/item/weapon/tool/wrench, -/obj/item/device/measuring_tape, -/obj/item/stack/flag/yellow, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"asC" = ( -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"asD" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"asE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"asF" = ( -/obj/structure/closet/crate, -/obj/random/contraband, -/obj/random/maintenance/research, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"asG" = ( -/obj/effect/map_effect/portal/master/side_a{ - dir = 1; - name = "to_wilderness"; - portal_id = "wilderness_step" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"asH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"asI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"asJ" = ( -/obj/structure/catwalk, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"asK" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"asL" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"asM" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/surface_one_hall) -"asN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"asO" = ( -/obj/machinery/light/small, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass, -/area/tether/surfacebase/surface_one_hall) -"asP" = ( -/obj/effect/floor_decal/rust, -/obj/effect/map_effect/portal/master/side_a{ - dir = 4; - name = "to_solars"; - portal_id = "solarstep" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"asQ" = ( -/obj/effect/floor_decal/rust, -/obj/effect/map_effect/portal/line/side_a{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"asR" = ( -/obj/effect/map_effect/portal/line/side_a{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"asS" = ( -/obj/effect/map_effect/portal/line/side_a{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"asT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"asU" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"asV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"asW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"asX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"asY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"asZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ata" = ( -/obj/structure/closet/crate, -/obj/random/action_figure, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"atb" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet/crate, -/obj/random/maintenance/research, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/obj/item/weapon/pickaxe, -/turf/simulated/floor/plating, -/area/vacant/vacant_site) -"atc" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atd" = ( -/obj/machinery/door/airlock{ - id_tag = "lg_1"; - name = "Looking Glass" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_one) -"ate" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"atf" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"atg" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"ath" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - name = "\improper Secondary Evacuation Route" - }, -/turf/simulated/wall, -/area/maintenance/lower/xenoflora) -"ati" = ( -/obj/structure/sign/directions/evac{ - name = "\improper Secondary Evacuation Route" - }, -/turf/simulated/wall, -/area/maintenance/lower/xenoflora) -"atj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"atk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"atl" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"atm" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"atn" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ato" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atp" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atq" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atr" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/random/soap, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"ats" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"att" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/recharger, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atu" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/random/maintenance/clean, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atx" = ( -/turf/simulated/wall, -/area/tether/surfacebase/tram) -"aty" = ( -/obj/structure/sign/warning{ - name = "\improper STAND AWAY FROM TRACK EDGE" - }, -/turf/simulated/wall, -/area/tether/surfacebase/tram) -"atz" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"atA" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"atB" = ( -/turf/simulated/floor/maglev, -/area/tether/surfacebase/tram) -"atC" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"atD" = ( -/obj/structure/closet/excavation, -/obj/item/weapon/melee/umbrella/random, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"atE" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"atF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"atG" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/simulated/wall, -/area/maintenance/substation/civ_west) -"atH" = ( -/turf/simulated/wall, -/area/maintenance/substation/civ_west) -"atI" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atJ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atK" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"atL" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"atM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"atN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atO" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atP" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atQ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"atR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"atW" = ( -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"atX" = ( -/obj/structure/bed/chair, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"atY" = ( -/obj/structure/bed/chair, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"atZ" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aua" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"aub" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/tram) -"auc" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"aud" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"aue" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"aug" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"auh" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/item/weapon/storage/belt/archaeology, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_storage) -"aui" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"auj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"auk" = ( -/obj/machinery/door/airlock/engineering{ - name = "Civilian West Substation"; - req_one_access = list(11) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/maintenance/substation/civ_west) -"aul" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Civ West Subgrid"; - name_tag = "Civ West Subgrid" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civ_west) -"aum" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Civ West"; - output_attempt = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civ_west) -"aun" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Civ West Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civ_west) -"auo" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"aup" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/common{ - name = "Mining Maintenance Access" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"auq" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"aur" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"aus" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aut" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"auu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/computer/guestpass{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"auv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/structure/closet/wardrobe/mixed, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"auw" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/machinery/computer/timeclock/premade/south, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"aux" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/structure/closet/wardrobe/suit, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"auy" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/machinery/light, -/obj/item/clothing/shoes/black, -/turf/simulated/floor/holofloor/tiled/dark, -/area/crew_quarters/locker) -"auz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"auA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auB" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auC" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auD" = ( -/obj/machinery/door/blast/regular, -/turf/simulated/wall, -/area/tether/surfacebase/tram) -"auE" = ( -/turf/simulated/wall, -/area/rnd/xenoarch_storage) -"auF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"auG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"auH" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civ_west) -"auI" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civ_west) -"auJ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civ_west) -"auK" = ( -/turf/simulated/wall, -/area/maintenance/lower/solars) -"auL" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"auM" = ( -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"auN" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"auO" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"auP" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/water/pool, -/area/tether/surfacebase/surface_one_hall) -"auQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"auR" = ( -/turf/simulated/wall, -/area/security/checkpoint) -"auS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auU" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"auW" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "rnd_s_airlock_scrubber" - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/external) -"auY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"auZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"ava" = ( -/obj/machinery/door/airlock/research{ - id_tag = "researchdoor"; - name = "Research Division Access"; - req_access = list(47) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/lower/first_west) -"avb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"avc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/camera/network/tether{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"avd" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/simulated/wall, -/area/maintenance/lower/solars) -"ave" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Civilian West Substation"; - req_one_access = list(11) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/engi{ - id_tag = "elevescaper"; - name = "Elevator Maintenance" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"avj" = ( -/obj/machinery/door/airlock/maintenance/common{ - name = "Solars Maintenance Access" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"avk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avl" = ( -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/tether{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"avn" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"avo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"avp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - id_tag = null; - layer = 2.8; - name = "Security Checkpoint"; - req_access = list(1) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_x = 10; - pixel_y = 36 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/security, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/bookcase, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/security_space_law, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"avA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"avB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"avC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"avD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"avE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"avF" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"avG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"avH" = ( -/obj/structure/sign/department/anomaly, -/turf/simulated/wall, -/area/hallway/lower/first_west) -"avI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"avJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"avK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/railing, -/obj/structure/table/rack, -/obj/random/maintenance/medical, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance/medical, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avO" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"avP" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"avQ" = ( -/obj/structure/reagent_dispensers/virusfood{ - density = 0; - pixel_y = 62 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"avT" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/lower/xenoflora) -"avU" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/surface_one_hall) -"avV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"avW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"avX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"avY" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/green, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"avZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/computer/security{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awa" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/red, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/filingcabinet/security{ - name = "Security Records" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awc" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awd" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awe" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"awj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"awl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"awm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/mauve/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"awn" = ( -/turf/simulated/wall, -/area/rnd/hallway) -"awo" = ( -/obj/machinery/vending/snack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/lower/first_west) -"awp" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/cola{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/lower/first_west) -"awq" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/fitness{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/lower/first_west) -"awr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aws" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"awt" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"awu" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"awv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"aww" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/paleblue/bordercorner2, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/camera/network/medbay{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awy" = ( -/obj/structure/closet/secure_closet/paramedic, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"awz" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awA" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "elevescaper"; - name = "elevator escape button"; - pixel_y = 32 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"awC" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awD" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "16-0" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/disposalpipe/up, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"awE" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awF" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awG" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"awI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"awJ" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"awK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/camera/network/tether{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"awL" = ( -/obj/structure/sign/nanotrasen, -/turf/simulated/wall, -/area/security/checkpoint) -"awM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/brigdoor/northright, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/monotile, -/area/security/checkpoint) -"awN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/checkpoint) -"awO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/table/glass, -/obj/item/weapon/folder/red, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"awR" = ( -/obj/machinery/vending/snack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"awS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"awT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"awU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"awV" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - dir = 8; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = 24; - pixel_y = 25; - req_access = list(39) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awX" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/medical{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Virology Exterior Airlock"; - req_access = list(39) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "virologyquar"; - name = "Virology Emergency Quarantine Blast Doors"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"awY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"awZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"axa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/paramed) -"axb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/medical{ - autoclose = 0; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "virology_airlock_interior"; - locked = 1; - name = "Virology Interior Airlock"; - req_access = list(39) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"axc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 8; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = 25; - req_access = list(39) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -38; - pixel_y = -30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"axd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"axe" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Elevator Maintenance" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"axf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"axg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axh" = ( -/obj/machinery/camera/network/northern_star, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"axk" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axl" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/power/apc/high{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axm" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axn" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/camera/network/northern_star{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axo" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/light, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axp" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axq" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axr" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axs" = ( -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/security/checkpoint) -"axt" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/security/checkpoint) -"axu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"axv" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"axw" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/weapon/storage/box/donut, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"axx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/structure/table/glass, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"axy" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/tram, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"axz" = ( -/obj/machinery/vending/cola{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"axA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"axB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"axC" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"axD" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"axE" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"axF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/disease2/isolator, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"axG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"axH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"axI" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"axJ" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/green, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"axK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"axL" = ( -/obj/structure/sign/nosmoking_1, -/turf/simulated/wall, -/area/tether/surfacebase/medical/lowerhall) -"axM" = ( -/obj/machinery/vending/coffee{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"axN" = ( -/obj/machinery/vending/fitness{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"axO" = ( -/obj/machinery/vending/snack{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"axP" = ( -/turf/simulated/wall, -/area/tether/surfacebase/medical/centralstairwell) -"axQ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"axR" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"axS" = ( -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"axT" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axU" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"axZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aya" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayb" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayd" = ( -/obj/machinery/shower{ - dir = 4; - pixel_x = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/curtain/open/shower/medical, -/turf/simulated/floor/tiled/steel, -/area/medical/virologyaccess) -"aye" = ( -/obj/structure/table/standard, -/obj/random/medical, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"ayf" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) -"ayg" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 4; - id_tag = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = -28; - pixel_y = -6; - tag_exterior_door = "virology_airlock_exterior"; - tag_interior_door = "virology_airlock_interior" - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - dir = 4; - id = "virologyquar"; - name = "Virology Emergency Lockdown Control"; - pixel_x = -28; - pixel_y = 6; - req_access = list(5) - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayh" = ( -/turf/simulated/wall, -/area/crew_quarters/locker/laundry_arrival) -"ayi" = ( -/obj/structure/sign/directions/evac{ - dir = 4 - }, -/turf/simulated/wall, -/area/crew_quarters/locker/laundry_arrival) -"ayj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayk" = ( -/obj/structure/table/glass, -/obj/item/device/radio{ - anchored = 1; - canhear_range = 7; - frequency = 1487; - icon = 'icons/obj/items.dmi'; - icon_state = "red_phone"; - name = "Virology Emergency Phone"; - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/item/device/antibody_scanner, -/obj/item/device/antibody_scanner{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aym" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/industrial/loading{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/security/checkpoint) -"ayn" = ( -/obj/structure/sign/directions/evac{ - dir = 4 - }, -/turf/simulated/wall, -/area/security/checkpoint) -"ayo" = ( -/obj/structure/grille, -/obj/structure/railing, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"ayp" = ( -/obj/structure/sign/warning/nosmoking_1, -/turf/simulated/wall, -/area/tether/surfacebase/tram) -"ayq" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"ayr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ays" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ayt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayw" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Virology Laboratory"; - req_access = list(39) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayA" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/green, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayB" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/tagger{ - dir = 2; - name = "package tagger - Void"; - sort_tag = "Void" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"ayC" = ( -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"ayD" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"ayE" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayG" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayH" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ayK" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayM" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/monkeycubes, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ayN" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayQ" = ( -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/machinery/vending/fitness, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/locker/laundry_arrival) -"ayR" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/locker/laundry_arrival) -"ayS" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/locker/laundry_arrival) -"ayT" = ( -/obj/machinery/camera/network/civilian, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/vending/nifsoft_shop, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/locker/laundry_arrival) -"ayU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"ayV" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/laundry_basket, -/obj/item/weapon/tape_roll, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"ayW" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"ayX" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"ayY" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"ayZ" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"aza" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"azb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"azc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aze" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azm" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external/public, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/tram) -"azn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/landmark/tram, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"azo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/landmark/tram, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"azp" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/cryopod/robot/door/tram, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/tram) -"azq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"azs" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/lower/solars) -"azt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"azu" = ( -/obj/item/device/radio{ - pixel_x = -4 - }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Virology. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Virology Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/hand_labeler, -/obj/structure/table/glass, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azv" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/fancy/vials, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/lime/border, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/lime/bordercorner2, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azw" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/lockbox/vials, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/storage/secure/safe{ - pixel_y = -28 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azx" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/storage/box/syringes{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/lime/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azA" = ( -/obj/machinery/vending/snack{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"azB" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/nanotrasen, -/obj/item/weapon/storage/box/cups, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"azC" = ( -/obj/structure/reagent_dispensers/water_cooler/full{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"azD" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"azE" = ( -/obj/structure/railing, -/obj/machinery/camera/network/medbay{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"azF" = ( -/obj/structure/stairs/east, -/obj/structure/railing, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"azG" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'CRUSH WARNING'."; - name = "\improper CRUSH WARNING"; - pixel_y = -32 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"azH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/medical/virology) -"azI" = ( -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Virology Isolation Room One"; - req_one_access = list(39) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azJ" = ( -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Virology Isolation Room Two"; - req_one_access = list(39) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azK" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"azL" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azM" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azN" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azO" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azP" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azQ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azR" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azS" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"azT" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"azU" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'CRUSH WARNING'."; - name = "\improper CRUSH WARNING"; - pixel_y = -32 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"azV" = ( -/turf/simulated/wall, -/area/medical/virology) -"azW" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"azZ" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aAa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAb" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"aAd" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/light, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"aAe" = ( -/obj/structure/bed/padded, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aAf" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/crew_quarters/locker/laundry_arrival) -"aAg" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aAh" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/status_display{ - layer = 4; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aAi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/medical{ - name = "Medical Maintenance Access"; - req_access = list(5) - }, -/obj/machinery/door/blast/shutters{ - closed_layer = 10; - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "medbayquar"; - layer = 1; - name = "Medbay Emergency Lockdown Shutters"; - opacity = 0; - open_layer = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/centralstairwell) -"aAj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Science Maintenance" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aAk" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aAl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aAm" = ( -/obj/random/junk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAo" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAp" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAq" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAr" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAs" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aAt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aAv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Science Maintenance" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aAy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aAz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAA" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAB" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "northciv_airlock_scrubber" - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/lowernortheva) -"aAC" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/green, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"aAD" = ( -/turf/simulated/wall, -/area/maintenance/lowmedbaymaint) -"aAE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAG" = ( -/turf/simulated/mineral, -/area/maintenance/lowmedbaymaint) -"aAH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAI" = ( -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAJ" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ - frequency = 1379; - scrub_id = "northciv_airlock_scrubber" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/lowernortheva) -"aAK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAL" = ( -/obj/effect/floor_decal/rust, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAM" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"aAN" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aAO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aAP" = ( -/obj/structure/sign/directions/evac{ - name = "\improper Secondary Evacuation Route" - }, -/turf/simulated/wall, -/area/tether/surfacebase/surface_one_hall) -"aAQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/obj/machinery/door/airlock/glass_external/public{ - name = "Evacuation Route" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/surface_one_hall) -"aAR" = ( -/obj/structure/sign/directions/evac{ - dir = 4 - }, -/turf/simulated/wall, -/area/tether/surfacebase/surface_one_hall) -"aAS" = ( -/obj/structure/closet/crate, -/obj/item/weapon/handcuffs/fuzzy, -/obj/random/maintenance/security, -/obj/random/contraband, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_one_hall) -"aAT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAU" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAV" = ( -/obj/structure/railing, -/obj/structure/table/rack, -/obj/item/clothing/suit/suspenders, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/lowmedbaymaint) -"aAX" = ( -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aAY" = ( -/obj/structure/railing, -/obj/structure/closet/crate, -/obj/item/device/camera, -/obj/item/device/tape/random, -/obj/item/device/taperecorder/empty, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aAZ" = ( -/obj/structure/railing, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBa" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBc" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/closet/crate, -/obj/random/cigarettes, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBd" = ( -/obj/random/trash_pile, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBe" = ( -/obj/structure/railing, -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/weapon/tank/emergency, -/obj/item/weapon/tank/emergency, -/obj/item/weapon/tank/emergency, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/visible/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aBi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aBj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBk" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"aBl" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBn" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"aBo" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aBp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aBq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"aBr" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBs" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"aBt" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBu" = ( -/obj/structure/cable/heavyduty{ - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aBv" = ( -/turf/simulated/wall, -/area/rnd/miscellaneous_lab) -"aBw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aBx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBy" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBz" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -13; - pixel_y = -30 - }, -/obj/structure/cable, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBA" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBB" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBC" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBE" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBF" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBG" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBH" = ( -/obj/effect/floor_decal/rust, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBI" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/weapon/tank/oxygen/red, -/obj/item/clothing/mask/gas/wwii, -/obj/item/clothing/head/hardhat/red, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBJ" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/lower/research) -"aBK" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aBN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBO" = ( -/turf/simulated/wall, -/area/maintenance/lower/research) -"aBP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBQ" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aBR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/crew_quarters/locker/laundry_arrival) -"aBS" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/locker/laundry_arrival) -"aBT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/locker/laundry_arrival) -"aBU" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aBV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aBW" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aBY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_one_hall) -"aBZ" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/surface_one_hall) -"aCa" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aCb" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aCc" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aCd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/computer/guestpass{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aCh" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCi" = ( -/obj/effect/landmark{ - name = "maint_pred" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCj" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aCk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aCl" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aCm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCp" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common{ - name = "Mining Maintenance Access" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/lowernorthhall) -"aCr" = ( -/turf/simulated/wall, -/area/tether/surfacebase/cargostore/warehouse) -"aCs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCt" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCu" = ( -/obj/structure/railing, -/obj/structure/closet/crate, -/obj/item/clothing/head/that, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCv" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCx" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Atmospherics Subgrid"; - name_tag = "Atmospherics Subgrid" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aCy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCA" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCB" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aCD" = ( -/obj/machinery/recharge_station, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aCE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aCF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aCG" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aCH" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aCI" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aCJ" = ( -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"aCK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aCL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/mining, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/cargostore/warehouse) -"aCM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aCN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aCO" = ( -/turf/simulated/wall, -/area/crew_quarters/visitor_dining) -"aCP" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aCQ" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aCR" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aCS" = ( -/obj/structure/flora/pottedplant, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aCT" = ( -/obj/machinery/vending/fitness{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aCU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aCV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aCW" = ( -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aCX" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCY" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aCZ" = ( -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aDa" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 10; - id = "gloriouscargopipeline" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDb" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "gloriouscargopipeline" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDe" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDf" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDg" = ( -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDi" = ( -/turf/simulated/wall, -/area/tether/surfacebase/emergency_storage/rnd) -"aDj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/catwalk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aDk" = ( -/obj/item/weapon/bone/skull/unathi, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aDl" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aDm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aDn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aDo" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aDp" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aDq" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"aDr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDs" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDt" = ( -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDu" = ( -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aDv" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aDw" = ( -/obj/machinery/vending/coffee{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aDx" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aDy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aDB" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDC" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDD" = ( -/obj/structure/table/rack, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDE" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aDG" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aDH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aDI" = ( -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aDJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/vending/cola{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/monotile, -/area/rnd/hallway) -"aDL" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDM" = ( -/obj/structure/ladder/up, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aDN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aDO" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aDP" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aDQ" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aDR" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aDS" = ( -/obj/machinery/door/airlock/maintenance/common{ - name = "Laundry Maintenance Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/locker/laundry_arrival) -"aDT" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/tether/surfacebase/surface_one_hall) -"aDU" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "gloriouscargopipeline" - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "gloriouscargopipeline"; - name = "Mining Ops conveyor switch"; - pixel_x = -5; - pixel_y = -3; - req_access = list(48); - req_one_access = list(48) - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aDX" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aDY" = ( -/obj/machinery/door/window{ - dir = 8; - req_one_access = list(25) - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aDZ" = ( -/obj/machinery/light_switch{ - name = "light switch "; - pixel_x = 10; - pixel_y = 36 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "cafe"; - name = "Cafe Shutters"; - pixel_x = -10; - pixel_y = 36; - req_one_access = list(25) - }, -/obj/structure/sink{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aEa" = ( -/obj/structure/table/marble, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/reagent_containers/food/condiment/small/sugar, -/obj/machinery/floor_light/prebuilt{ - on = 1 - }, -/obj/item/weapon/reagent_containers/glass/rag, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aEb" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aEc" = ( -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aEd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEe" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aEf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEi" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/warning/moving_parts{ - desc = "A warning sign for moving parts. This one states 'Put your gathered ore here for processing!' on it."; - name = "To Mining Operations Processing"; - pixel_x = -32 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEm" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aEn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/vending/coffee{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/monotile, -/area/rnd/hallway) -"aEo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aEq" = ( -/obj/machinery/door/airlock/maintenance/int{ - name = "Emergency Storage" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/hallway) -"aEr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aEs" = ( -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aEt" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aEu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aEv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aEw" = ( -/obj/effect/floor_decal/rust, -/obj/structure/railing, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aEx" = ( -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aEy" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aEz" = ( -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aEA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aEB" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aEC" = ( -/obj/structure/table/rack, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aED" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aEE" = ( -/obj/effect/landmark{ - name = "maint_pred" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aEF" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - id_tag = null; - name = "Construction Site" - }, -/turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/surface_one_hall) -"aEG" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aEI" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/crew_quarters/visitor_dining) -"aEJ" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aEK" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aEL" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aEM" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aEN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aEO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aEP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aEQ" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall, -/area/maintenance/lower/solars) -"aER" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/solars) -"aES" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aET" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aEU" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEW" = ( -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"aEX" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aEY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aEZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/camera/network/cargo, -/obj/structure/bed/chair, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/flora/pottedplant/stoutbush, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFc" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/metal{ - name = "Shop Warehouse"; - req_one_access = list(48) - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/cargostore/warehouse) -"aFd" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/cargostore/warehouse) -"aFe" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFh" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aFi" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aFj" = ( -/obj/structure/table/standard, -/obj/item/device/t_scanner, -/obj/item/weapon/storage/briefcase/inflatable, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/emergency_storage/rnd) -"aFk" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/table/bench/steel, -/obj/random/cigarettes, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aFl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aFm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/holosign/bar{ - id = "maintbar"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aFn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aFo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aFp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/external{ - name = "Evacuation Route" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aFq" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"aFr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"aFs" = ( -/obj/machinery/atmospherics/pipe/cap/visible/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"aFt" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Warehouse" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/cargostore/warehouse) -"aFu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFw" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - id_tag = null; - name = "Cafe" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor, -/area/crew_quarters/visitor_dining) -"aFx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aFy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aFz" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aFA" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aFB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/landmark/start{ - name = "Bartender" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aFC" = ( -/obj/structure/table/marble, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/machinery/floor_light/prebuilt{ - on = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aFD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/visitor_dining) -"aFE" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFF" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/bed/chair/wood, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/catwalk, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aFN" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - name = "\improper Secondary Evacuation Route" - }, -/turf/simulated/wall, -/area/maintenance/lower/research) -"aFO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFP" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aFR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aFS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aFT" = ( -/obj/structure/table/marble, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/machinery/floor_light/prebuilt{ - on = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aFU" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFV" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFW" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aFY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aFZ" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aGa" = ( -/turf/simulated/wall, -/area/tether/surfacebase/cargostore) -"aGb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGi" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGj" = ( -/turf/simulated/wall, -/area/tether/surfacebase/cargostore/office) -"aGk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/power/apc/high{ - dir = 4; - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGr" = ( -/obj/structure/bed/chair/sofa/brown/right, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGs" = ( -/obj/structure/bed/chair/sofa/brown/corner, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGt" = ( -/turf/simulated/wall, -/area/vacant/vacant_site/east) -"aGu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aGv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aGw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aGx" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aGy" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - dir = 8 - }, -/obj/machinery/floor_light/prebuilt{ - on = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aGz" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aGA" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aGB" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/high{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aGC" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aGD" = ( -/obj/structure/cable/ender{ - icon_state = "4-8"; - id = "surface-solars" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aGE" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aGF" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aGG" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aGH" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aGI" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aGJ" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aGK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGP" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aGQ" = ( -/obj/machinery/door/airlock/glass_mining{ - id_tag = "cargodoor"; - name = "Cargo Office"; - req_access = list(31); - req_one_access = list() - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/cargostore/office) -"aGR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aGS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGT" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like it's on MTV. Now you can't blame that demi-cowgirl for working her money maker. I wonder what else is on?"; - icon_state = "frame"; - pixel_x = 16; - pixel_y = 64 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGU" = ( -/obj/structure/bed/chair/sofa/brown/left{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aGV" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aGW" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/machinery/computer/guestpass{ - dir = 1; - pixel_y = -28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGX" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGY" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aGZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aHa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/structure/closet/bombcloset, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aHb" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aHc" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aHd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aHe" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aHf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aHg" = ( -/obj/random/action_figure, -/obj/random/action_figure, -/obj/random/action_figure, -/obj/structure/closet/wardrobe/grey{ - starts_with = list(/obj/structure/barricade/cutout/viva, /obj/item/clothing/under/color/grey = 3, /obj/item/clothing/shoes/black = 3, /obj/item/clothing/head/soft/grey = 3, /obj/item/clothing/mask/gas/wwii = 3, /obj/item/weapon/storage/toolbox/mechanical = 3, /obj/item/clothing/gloves/fyellow = 3, /obj/item/weapon/card/id/gold/captain/spare/fakespare = 3, /obj/item/weapon/soap/syndie = 3, /obj/item/weapon/storage/box/mousetraps = 3) - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aHh" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aHi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aHj" = ( -/obj/machinery/door/window/southright{ - req_access = list(5) - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aHk" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aHl" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aHm" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aHn" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_dining) -"aHo" = ( -/obj/structure/sign/warning/high_voltage{ - name = "\improper SOLAR FARM" - }, -/turf/unsimulated/wall/planetary/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aHp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aHq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/structure/flora/pottedplant/stoutbush, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aHr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aHs" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aHt" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/rnd{ - name = "Science Maintenance" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/hallway) -"aHu" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/boxinggloves, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aHv" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/surface_atmos) -"aHw" = ( -/obj/effect/floor_decal/rust, -/obj/random/trash_pile, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aHx" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aHy" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aHz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aHA" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aHB" = ( -/obj/effect/floor_decal/rust, -/obj/structure/toilet{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm3) -"aHC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aHD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aHE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 6 - }, -/obj/machinery/button/remote/airlock{ - id = "maintdorm2"; - name = "Room 2 Lock"; - pixel_x = 23; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aHF" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/westleft{ - req_access = list(31) - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aHG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/visitor_dining) -"aHH" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aHI" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aHJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/visitor_dining) -"aHK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aHL" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside1) -"aHM" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet, -/obj/machinery/conveyor{ - id = "surfacecargo" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/warning{ - desc = "A warning sign. It has great big words saying 'Surface Cargo Deliveries. Stay behind the railings when active!' on it."; - name = "Surface Cargo Delivery"; - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/cargostore) -"aHN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aHO" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aHP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aHQ" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aHR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aHS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aHT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aHU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aHV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common{ - name = "Mining Maintenance Access" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/cargostore) -"aHW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 6 - }, -/obj/machinery/button/remote/airlock{ - id = "maintdorm1"; - name = "Room 1 Lock"; - pixel_x = 23; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"aHX" = ( -/obj/effect/floor_decal/rust, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm1) -"aHY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aHZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aIa" = ( -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aIb" = ( -/obj/structure/railing, -/obj/structure/closet, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/cigarettes, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aIc" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aId" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aIe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aIf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aIg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm3) -"aIh" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"aIi" = ( -/obj/structure/table, -/obj/item/frame, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aIj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aIk" = ( -/obj/structure/railing, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aIl" = ( -/obj/structure/flora/pottedplant/flower, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aIm" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aIn" = ( -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aIo" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aIp" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aIq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aIr" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aIt" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIv" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIw" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIx" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIz" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aIA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aIB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/vending/wallmed_airlock{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aIC" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/binary/passive_gate/on, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aID" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aIE" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aIF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aIG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aIH" = ( -/obj/structure/table, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"aII" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aIJ" = ( -/obj/effect/floor_decal/rust, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aIK" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aIL" = ( -/obj/structure/table/rack, -/obj/random/junk, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aIM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aIN" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Atmospherics"; - charge = 2e+006 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aIO" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Atmos Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/surface_atmos) -"aIP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals_central6{ - pixel_y = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aIU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/machinery/camera/network/engineering, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIX" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/fiftyspawner/steel, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aIY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aIZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aJa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aJb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aJc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/steeldecal/steel_decals_central6{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJi" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aJk" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - req_access = list(31) - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aJl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aJm" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/condiment/small/sugar, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJn" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJo" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJq" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aJs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aJt" = ( -/obj/structure/railing, -/obj/machinery/conveyor{ - dir = 5; - id = "surfacecargo" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aJu" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/stack/material/wood{ - amount = 10 - }, -/obj/structure/table, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aJv" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aJw" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aJx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aJy" = ( -/obj/structure/table/standard, -/obj/item/weapon/stamp/cargo, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/weapon/clipboard, -/obj/item/weapon/folder/yellow, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aJz" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/device/retail_scanner/civilian, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aJA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aJB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aJC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aJD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light_construct/small, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aJE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aJF" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos/gas_storage) -"aJG" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Substation"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aJH" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aJI" = ( -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aJJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aJK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aJL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aJM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aJN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aJO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/structure/table/standard, -/obj/item/stack/cable_coil/random_belt, -/obj/item/stack/cable_coil/random_belt, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/item/taperoll/atmos, -/obj/item/stack/cable_coil/random_belt, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aJP" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/shifted, -/obj/effect/floor_decal/corner/lightgrey/border/shifted, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJQ" = ( -/obj/effect/floor_decal/borderfloor/shifted, -/obj/effect/floor_decal/corner/lightgrey/border/shifted, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor/shifted, -/obj/effect/floor_decal/corner/lightgrey/border/shifted, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aJS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aJT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aJU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aJV" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aJX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aJY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aJZ" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/asmaint2) -"aKa" = ( -/turf/simulated/wall, -/area/maintenance/asmaint2) -"aKb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aKc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aKd" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aKe" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aKf" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aKg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aKh" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/weapon/tank/oxygen/red, -/obj/item/clothing/mask/gas/wwii, -/obj/item/clothing/head/hardhat/red, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aKi" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aKj" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aKk" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aKl" = ( -/obj/structure/table/standard, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmos RC"; - pixel_y = 28 - }, -/obj/item/weapon/tool/wrench, -/obj/item/device/t_scanner, -/obj/item/weapon/storage/belt/utility/atmostech, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKm" = ( -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/table/standard, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/item/device/radio/headset/headset_eng, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc/super{ - dir = 1; - pixel_y = 28 - }, -/obj/machinery/button/remote/blast_door{ - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - req_one_access = list(10,24) - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKn" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/obj/structure/table/standard, -/obj/item/device/pipe_painter{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/pipe_painter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKo" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/structure/table/standard, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKp" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKq" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKr" = ( -/obj/structure/railing, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aKs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/cee, -/obj/effect/floor_decal/industrial/danger/cee, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aKv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/railing, -/obj/structure/table/standard, -/obj/random/maintenance/engineering, -/obj/item/stack/cable_coil/random_belt, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/item/weapon/storage/box/lights/mixed, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aKx" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKy" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKz" = ( -/obj/item/weapon/beach_ball/holoball, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aKA" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKB" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKC" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/random/plushie, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKD" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/vending/coffee{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKE" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/lapvend{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKF" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 5 - }, -/obj/machinery/vending/cigarette{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Mailing Room"; - req_access = list(50) - }, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "surfcargooffice"; - layer = 3.3; - name = "Cargo Office Shutters" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aKH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aKI" = ( -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/machinery/button/remote/blast_door{ - id = "surfcargooffice"; - name = "Office Shutters"; - pixel_x = -7; - pixel_y = 24; - req_access = list(31) - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aKJ" = ( -/obj/machinery/light, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aKK" = ( -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aKL" = ( -/turf/simulated/wall, -/area/rnd/external) -"aKM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "rnd_s_airlock_inner"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/external) -"aKN" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/access_button/airlock_interior{ - master_tag = "rnd_s_airlock"; - pixel_x = 25; - pixel_y = 24 - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "rnd_s_airlock_inner"; - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/external) -"aKO" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aKP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aKQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aKR" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aKS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"aKT" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aKU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/pipedispenser, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKV" = ( -/obj/item/weapon/stool, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKW" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKX" = ( -/obj/structure/cable/cyan{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/machinery/atmospherics/pipe/zpipe/up, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aKY" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aKZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - name = "Distro Loop Drain" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - name = "Waste to Filter" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - name = "Air to Distro" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLc" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLd" = ( -/obj/machinery/atmospherics/pipe/zpipe/up, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aLe" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aLg" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_7) -"aLh" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/crew_quarters/visitor_lodging) -"aLi" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/crew_quarters/visitor_lodging) -"aLj" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_8) -"aLk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aLl" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"aLm" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"aLn" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/sign/fire{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/external) -"aLo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/machinery/embedded_controller/radio/airlock/phoron{ - id_tag = "rnd_s_airlock"; - pixel_y = 30 - }, -/obj/machinery/airlock_sensor/phoron{ - id_tag = "rnd_s_airlock_sensor"; - pixel_x = 11; - pixel_y = 30 - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/tiled, -/area/rnd/external) -"aLp" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/external) -"aLq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/external) -"aLr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "rnd_s_airlock_pump" - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled, -/area/rnd/external) -"aLs" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/external) -"aLt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/structure/table/rack, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aLu" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aLv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aLw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aLx" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aLy" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aLz" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aLA" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/pipedispenser/disposal, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLB" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLC" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLD" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLE" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/binary/pump/on{ - name = "Ports to Waste" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLF" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLG" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLH" = ( -/obj/machinery/atmospherics/binary/pump/on{ - name = "Scrubber to Waste" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLI" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - name = "Air to Distro" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLJ" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - name = "Air to Ports" - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"aLL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aLM" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_7/holo) -"aLN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/HolodeckControl/holodorm/seven, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aLO" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aLP" = ( -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/yellow/bordercorner, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aLQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aLR" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aLS" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_y = 26 - }, -/obj/random/drinkbottle, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aLT" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aLU" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aLV" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aLW" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"aLX" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"aLY" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/external) -"aLZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aMa" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/external) -"aMb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/external) -"aMc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/structure/flora/pottedplant, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"aMd" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/external) -"aMe" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aMf" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aMg" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_atmos{ - name = "Canister Storage"; - req_access = list(24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMn" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMq" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - target_pressure = 300 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMw" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aMx" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_7/holo) -"aMy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aMz" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm7"; - name = "Room 7 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aMA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aMB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aMC" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm8"; - name = "Room 8 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aMD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aME" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aMF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aMG" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aMH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"aMI" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"aMJ" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "rnd_s_airlock_outer"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/external) -"aMK" = ( -/obj/machinery/access_button/airlock_exterior{ - master_tag = "rnd_s_airlock"; - pixel_x = 25; - pixel_y = -8; - req_access = list(47) - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "rnd_s_airlock_outer"; - locked = 1 - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/external) -"aML" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/brown/bordercorner2, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aMM" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"aMN" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_atmos{ - name = "Canister Storage"; - req_access = list(24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aMR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMU" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/yellow/bordercorner, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMV" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMW" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMX" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aMZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNb" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/yellow/bordercorner, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNg" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNh" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aNj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_7) -"aNk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm7"; - name = "Room 7 (Holo)" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_7) -"aNl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aNm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aNn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm8"; - name = "Room 8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_8) -"aNo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aNp" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aNq" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aNr" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/bluedouble, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aNs" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/weapon/towel/random, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_8) -"aNt" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/random/soap, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_8) -"aNu" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_8) -"aNv" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/rnd/external) -"aNw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/rnd/external) -"aNx" = ( -/obj/machinery/camera/network/research, -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/rnd/external) -"aNy" = ( -/obj/effect/floor_decal/rust, -/obj/structure/closet/crate, -/obj/random/cigarettes, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/research) -"aNz" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aNA" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aNB" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aNC" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aND" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNE" = ( -/turf/simulated/wall, -/area/engineering/atmos) -"aNF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNG" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNH" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNI" = ( -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNJ" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNK" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNM" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNN" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNO" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNP" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aNQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aNR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aNS" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_6) -"aNT" = ( -/obj/item/stack/material/steel, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aNU" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aNV" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aNW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNY" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aNZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aOa" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOc" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Port to Isolation" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOe" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOf" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOh" = ( -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOi" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOj" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_5) -"aOk" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_5/holo) -"aOl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/HolodeckControl/holodorm/five, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"aOm" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"aOn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aOo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aOp" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOq" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_y = 26 - }, -/obj/random/carp_plushie, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOr" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOs" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOt" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOu" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aOv" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aOw" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/gas_storage) -"aOx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOy" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOA" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOD" = ( -/obj/machinery/atmospherics/omni/mixer{ - name = "Air Mixer"; - tag_north = 2; - tag_south = 1; - tag_south_con = 0.79; - tag_west = 1; - tag_west_con = 0.21 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOE" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_5/holo) -"aOG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"aOH" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm5"; - name = "Room 5 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"aOI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aOJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aOK" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm6"; - name = "Room 6 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aON" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOO" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aOP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aOQ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aOR" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos/processing) -"aOS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aOT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aOU" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aOX" = ( -/obj/machinery/atmospherics/pipe/tank/oxygen, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aOY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"aOZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_5) -"aPa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm5"; - name = "Room 5 (Holo)" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_5) -"aPb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aPc" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aPd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm6"; - name = "Room 6" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_6) -"aPe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aPf" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aPg" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aPh" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/reddouble, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aPi" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/weapon/towel/random, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_6) -"aPj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/random/soap, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_6) -"aPk" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_6) -"aPl" = ( -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPn" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/super{ - dir = 1; - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPq" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPw" = ( -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 8; - name = "Waste Purge Valve"; - target_pressure = 4500 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPz" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPA" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPC" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPD" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPF" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aPG" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aPH" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aPI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aPJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aPK" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_4) -"aPL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPS" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPT" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aPU" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/on{ - name = "Waste Compresser" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aPZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQa" = ( -/obj/machinery/atmospherics/pipe/tank/oxygen{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aQb" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_3) -"aQc" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_3/holo) -"aQd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/HolodeckControl/holodorm/three, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"aQe" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"aQf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aQg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aQh" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQi" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQj" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQk" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQl" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQm" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"aQn" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"aQo" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aQp" = ( -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aQq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aQr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aQs" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aQt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aQu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQw" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQC" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aQE" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/computer/supplycomp{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"aQF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_3/holo) -"aQG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"aQH" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm3"; - name = "Room 3 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"aQI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aQJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aQK" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm4"; - name = "Room 4 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQO" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aQP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"aQQ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"aQR" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aQS" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/stack/material/algae, -/obj/item/stack/material/algae, -/obj/item/stack/material/algae, -/obj/item/stack/material/algae, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aQT" = ( -/obj/machinery/atmospherics/binary/algae_farm/filled{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aQU" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aQV" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aQW" = ( -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aQX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aQY" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aQZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRd" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRf" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRh" = ( -/obj/machinery/atmospherics/pipe/tank/nitrogen, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aRi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"aRj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_3) -"aRk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm3"; - name = "Room 3 (Holo)" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_3) -"aRl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aRm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm4"; - name = "Room 4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_4) -"aRn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aRo" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aRp" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aRq" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/yellowdouble, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aRr" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/weapon/towel/random, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_4) -"aRs" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/random/soap, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_4) -"aRt" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_4) -"aRu" = ( -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aRv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aRw" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aRx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aRy" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aRz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aRA" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRF" = ( -/obj/machinery/atmospherics/valve/digital{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRG" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRI" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRM" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aRN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aRO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aRP" = ( -/obj/machinery/atmospherics/unary/heater, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aRQ" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aRR" = ( -/obj/machinery/computer/supplycomp/control{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aRS" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRV" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aRW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/valve/digital, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aRZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSa" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "CO2 Filter"; - tag_east = 2; - tag_north = 1; - tag_south = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSc" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "Phoron Filter"; - tag_east = 2; - tag_south = 6; - tag_west = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSd" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "N2O Filter"; - tag_east = 2; - tag_south = 7; - tag_west = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSf" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "N2/O2 Filter"; - tag_east = 4; - tag_north = 3; - tag_south = 2; - tag_west = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aSh" = ( -/obj/machinery/atmospherics/pipe/tank/nitrogen{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aSi" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_1) -"aSj" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_1/holo) -"aSk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/HolodeckControl/holodorm/one, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"aSl" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"aSm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aSn" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSo" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/Dorm_2) -"aSp" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSq" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/random/action_figure, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSr" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSs" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light_switch{ - name = "light switch "; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSt" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSu" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"aSv" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"aSw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aSx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aSy" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aSz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aSA" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aSB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aSC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aSD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSE" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSF" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSG" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/black/bordercorner, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/black/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSI" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/black/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSM" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSN" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/white/border, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSP" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSQ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - target_pressure = 300 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aSR" = ( -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aSS" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/crew_quarters/sleep/Dorm_1/holo) -"aST" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"aSU" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm1"; - name = "Room 1 Lock"; - pixel_x = 26; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"aSV" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm2"; - name = "Room 2 Lock"; - pixel_x = -26; - pixel_y = -4; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aSZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aTa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"aTb" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"aTc" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aTd" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aTe" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aTf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/processing) -"aTg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/processing) -"aTh" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTk" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTl" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTm" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTo" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTp" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTq" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTs" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTt" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTu" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aTv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/pipedispenser, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTw" = ( -/obj/item/clothing/head/soft/rainbow, -/obj/item/clothing/shoes/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/gloves/rainbow, -/obj/item/clothing/suit/storage/seromi/cloak/standard/rainbow, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aTx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"aTy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_1) -"aTz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - id_tag = "dorm1"; - name = "Room 1 (Holo)" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_1) -"aTA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aTB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/machinery/vending/loadout/loadout_misc, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aTC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aTD" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aTE" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aTF" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/orangedouble, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aTG" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/weapon/towel/random, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/Dorm_2) -"aTH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/random/soap, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/Dorm_2) -"aTI" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_2) -"aTJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTK" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aTN" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTO" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 8; - start_pressure = 3039.75 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTP" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTQ" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 8; - start_pressure = 1215.9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTR" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTS" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - dir = 8; - start_pressure = 1519.88 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTT" = ( -/obj/machinery/conveyor_switch{ - id = "surfacecargo"; - name = "Surface Cargo Delivery conveyor switch"; - pixel_x = -10; - pixel_y = 14 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aTU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aTV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aTW" = ( -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aTX" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aTY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"aTZ" = ( -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aUa" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aUb" = ( -/turf/simulated/wall, -/area/crew_quarters/showers) -"aUc" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 9 - }, -/obj/structure/undies_wardrobe, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/item/weapon/towel/random, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/item/device/communicator, -/obj/item/device/communicator, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aUl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aUm" = ( -/turf/simulated/wall, -/area/crew_quarters/visitor_laundry) -"aUn" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/gear_painter, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/grey/bordercorner2{ - dir = 10 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monofloor{ - dir = 1 - }, -/area/crew_quarters/visitor_laundry) -"aUr" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - id_tag = null; - name = "Laundry" - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monofloor, -/area/crew_quarters/visitor_laundry) -"aUs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUu" = ( -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUv" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUw" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUx" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUy" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUz" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUA" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUB" = ( -/obj/machinery/power/apc/super{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUC" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos_intake) -"aUD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos_intake) -"aUE" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/mask/smokable/cigarette/joint{ - desc = "Ever been to orbit?" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aUF" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aUG" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/clothing/head/soft/purple, -/obj/machinery/vending/wallmed1/public{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aUO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aUP" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUR" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aUS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aUT" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/lower/atmos) -"aUU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/table/woodentable, -/obj/machinery/light_construct, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aUV" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aUW" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUX" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aUY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aUZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/item/weapon/bikehorn/rubberducky, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVb" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aVc" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aVd" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVe" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVf" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVh" = ( -/obj/structure/table/bench/padded, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aVi" = ( -/obj/structure/bed/chair/comfy/black, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/visitor_laundry) -"aVk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aVl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aVm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aVn" = ( -/turf/simulated/wall, -/area/maintenance/lower/atmos) -"aVo" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aVp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aVq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aVr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aVs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aVt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVv" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aVw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aVz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVC" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVD" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVE" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "atmos_intake" - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aVF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aVG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aVH" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/table, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"aVI" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aVJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aVK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/bathrobe, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 6 - }, -/obj/structure/table/rack, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aVN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aVO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aVP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVS" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/grey/bordercorner, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVT" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aVU" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1441; - id = "atmos_out"; - use_power = 1 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aVV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "atmoslockdown"; - name = "Atmospherics Lockdown"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aVW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aVX" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/double, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aVY" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aVZ" = ( -/obj/machinery/vending/boozeomat, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWa" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWc" = ( -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWd" = ( -/obj/structure/table/borosilicate, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWe" = ( -/obj/structure/table/borosilicate, -/obj/structure/dancepole, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/bathrobe, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aWj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aWk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/random/soap, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aWl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aWm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aWn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/visitor_laundry) -"aWo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/vending/loadout/costume{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aWr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"aWs" = ( -/obj/structure/closet, -/obj/random/maintenance/engineering, -/obj/random/junk, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aWt" = ( -/obj/structure/table/rack, -/obj/random/maintenance/engineering, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aWu" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aWv" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aWw" = ( -/obj/structure/table, -/obj/item/stack/material/wood{ - amount = 10 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWx" = ( -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/junk, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aWy" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aWz" = ( -/obj/machinery/smartfridge, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWA" = ( -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWB" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/showers) -"aWH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/bathrobe, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aWI" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/machinery/light, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aWJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/white/border{ - dir = 6 - }, -/obj/structure/table/standard, -/obj/random/soap, -/obj/random/soap, -/turf/simulated/floor/tiled, -/area/crew_quarters/showers) -"aWK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/white/border{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aWL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aWM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/vending/fitness{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/vending/cola{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWO" = ( -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aWP" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aWQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWR" = ( -/obj/structure/table, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aWS" = ( -/obj/structure/table, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWT" = ( -/obj/structure/table/bench/padded, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aWU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/maintenance/lower/atmos) -"aWV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/vending/cigarette{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_lodging) -"aWX" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWY" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/grey/bordercorner2{ - dir = 9 - }, -/obj/machinery/vending/nifsoft_shop{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aWZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aXa" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/structure/table/standard, -/obj/item/weapon/storage/laundry_basket, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/grey/bordercorner2, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aXb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aXc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 6 - }, -/obj/structure/closet/crate, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aXd" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos_intake) -"aXe" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXf" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aXg" = ( -/obj/structure/ladder/up, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXh" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - name = "Maintenance Access" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXi" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXj" = ( -/obj/machinery/button/holosign{ - id = "maintbar"; - pixel_x = -24 - }, -/obj/structure/table, -/obj/item/stack/material/wood{ - amount = 10 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXk" = ( -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aXl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/wood, -/area/maintenance/lower/atmos) -"aXn" = ( -/obj/random/junk, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aXr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXt" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXw" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXy" = ( -/obj/random/cash, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXz" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/maintenance/lower/atmos) -"aXA" = ( -/obj/structure/table/steel, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXI" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 1; - name = "Maintenance Access" - }, -/turf/simulated/floor/wood, -/area/maintenance/lower/atmos) -"aXJ" = ( -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/rust, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXP" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel_dirty, -/area/maintenance/lower/atmos) -"aXQ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore/office) -"aXR" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/masks, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXS" = ( -/obj/machinery/door/window/southleft, -/obj/effect/decal/cleanable/vomit, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aXX" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/table/steel, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aXY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/vending/cigarette{ - dir = 8 - }, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYd" = ( -/turf/simulated/wall, -/area/vacant/vacant_bar) -"aYe" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/maintDorm3) -"aYf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - id_tag = "maintdorm3"; - name = "Room 3" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/crew_quarters/sleep/maintDorm3) -"aYg" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/maintDorm2) -"aYh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - id_tag = "maintdorm2"; - name = "Room 2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/crew_quarters/sleep/maintDorm2) -"aYi" = ( -/turf/simulated/wall, -/area/crew_quarters/sleep/maintDorm1) -"aYj" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - id_tag = "maintdorm1"; - name = "Room 1" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/crew_quarters/sleep/maintDorm1) -"aYk" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aYm" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aYo" = ( -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYp" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 6 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYr" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/vacant/vacant_bar) -"aYs" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/vacant/vacant_bar) -"aYu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 6 - }, -/obj/machinery/button/remote/airlock{ - id = "maintdorm3"; - name = "Room 3 Lock"; - pixel_x = 23; - pixel_y = -4; - specialfunctions = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aYv" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm3) -"aYx" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aYz" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - dir = 4; - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aYB" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aYE" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aYF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aYG" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aYI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aYL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aYM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aYN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/vacant/vacant_bar) -"aYO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/vacant/vacant_bar) -"aYR" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm3) -"aYT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm3) -"aYY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm2) -"aZb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aZc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aZg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"aZh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/white, -/area/vacant/vacant_bar) -"aZi" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/vacant/vacant_bar) -"aZj" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aZl" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light_construct/small, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm3) -"aZm" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/maintDorm3) -"aZo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aZp" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light_construct/small, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/maintDorm2) -"aZq" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/sleep/maintDorm2) -"aZu" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aZv" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"aZw" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aZz" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aZA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aZC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"aZD" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"aZI" = ( -/obj/machinery/light_construct{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aZK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"aZL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_construct{ - dir = 1 - }, -/obj/structure/table, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aZN" = ( -/obj/structure/table, -/obj/item/stack/material/wood{ - amount = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"aZO" = ( -/obj/structure/closet, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aZP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_construct{ - dir = 1 - }, -/obj/structure/table, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aZQ" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"aZR" = ( -/obj/structure/closet, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aZS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_construct{ - dir = 1 - }, -/obj/random/junk, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"aZU" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/fancy/markers, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"aZX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"aZY" = ( -/obj/machinery/light, -/obj/structure/ladder/up, -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"aZZ" = ( -/obj/structure/symbol/sa, -/turf/simulated/wall, -/area/vacant/vacant_bar) -"baa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"bab" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/table/bench/padded, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"bad" = ( -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"bah" = ( -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"baj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"bal" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"bao" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"baq" = ( -/obj/structure/sign/warning, -/turf/simulated/wall, -/area/tether/surfacebase/outside/outside1) -"bar" = ( -/obj/structure/sign/xenobio, -/turf/simulated/wall, -/area/tether/surfacebase/outside/outside1) -"bas" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"bat" = ( -/obj/structure/table, -/turf/simulated/floor/plating, -/area/vacant/vacant_bar) -"bau" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar) -"baA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"baB" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/iandouble, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"baC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"baD" = ( -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"baE" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/mimedouble, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"baF" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside1) -"baG" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside1) -"baK" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm3) -"baM" = ( -/obj/item/stack/material/steel, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm2) -"baO" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/sleep/maintDorm1) -"baP" = ( -/obj/item/stack/material/steel, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"baQ" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"baR" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm3) -"baS" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm2) -"baT" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/maintDorm1) -"baU" = ( -/turf/simulated/mineral/floor/virgo3b, -/area/tether/surfacebase/outside/outside1) -"baV" = ( -/turf/simulated/floor/outdoors/dirt/virgo3b, -/area/tether/surfacebase/outside/outside1) -"baW" = ( -/obj/structure/sign/warning/caution{ - desc = "No unarmed personnel beyond this point."; - name = "\improper DANGER - WILDERNESS" - }, -/turf/unsimulated/wall/planetary/virgo3b, -/area/tether/surfacebase/outside/outside1) -"baX" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Cargo Shop" - }, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/cargostore) -"baY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "surfcargooffice"; - layer = 3.3; - name = "Cargo Office Shutters" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/cargostore/office) -"baZ" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bba" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "surfcargooffice"; - layer = 3.3; - name = "Cargo Office Shutters" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/tether/surfacebase/cargostore/office) -"bbb" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Mental Health and North EVA" - }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/tether/surfacebase/lowernorthhall) -"bbc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bbd" = ( -/obj/random/cash, -/obj/random/contraband, -/obj/random/mre, -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bbe" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bbf" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/tether/surfacebase/lowernorthhall) -"bbg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbi" = ( -/obj/machinery/door/airlock/engineering{ - name = "CargoShop Substation"; - req_one_access = list(11,24,50) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbj" = ( -/turf/simulated/wall, -/area/maintenance/substation/SurfMedsubstation) -"bbk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbo" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/external) -"bbp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbr" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Medbay Substation"; - req_one_access = list(11,24,5) - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbs" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - CargoShop"; - output_attempt = 0 - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bbu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbv" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbw" = ( -/obj/structure/table/rack, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bbx" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "SurfMed Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bby" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/engineering{ - name = "Medbay Substation"; - req_one_access = list(11,24,5) - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - CargoShop Subgrid"; - name_tag = "CargoShop Subgrid" - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbD" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbF" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "CargoShop Substation"; - req_one_access = list(11,24,50) - }, -/turf/simulated/floor, -/area/maintenance/substation/cargostoresubstation) -"bbG" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/hallway/lower/first_west) -"bbH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"bbI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/SurfMedsubstation) -"bbJ" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - SurfMed"; - output_attempt = 0 - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbL" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbM" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/SurfMedsubstation) -"bbN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"bbO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"bbP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"bbQ" = ( -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/tether/elevator) -"bbR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) -"bbS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/lower/first_west) -"bbT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bbU" = ( -/obj/structure/table/rack, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance/medical, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bbV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - SurfMed Subgrid"; - name_tag = "SurfMed Subgrid" - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbW" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbX" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bbY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor, -/area/maintenance/substation/SurfMedsubstation) -"bbZ" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"bca" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"bcc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"bcd" = ( -/turf/simulated/mineral, -/area/maintenance/lower/xenoflora) -"bcf" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/masks, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/lime/bordercorner2, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"bch" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bci" = ( -/obj/structure/disposalpipe/segment, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bcj" = ( -/obj/machinery/door/airlock/glass{ - name = "Dressing Room" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcl" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcm" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcn" = ( -/obj/structure/closet/crate, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/cigarettes, -/obj/random/coin, -/obj/random/drinkbottle, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcp" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"bcq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/engi{ - id_tag = "elevescapel"; - name = "Elevator Maintenance" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "elevescapel"; - name = "elevator escape button"; - pixel_y = 32 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'CRUSH WARNING'."; - name = "\improper CRUSH WARNING"; - pixel_y = 32 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcv" = ( -/obj/structure/disposalpipe/up{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcz" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcA" = ( -/obj/structure/table, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcC" = ( -/obj/structure/closet/crate, -/obj/random/unidentified_medicine, -/obj/random/firstaid, -/obj/random/drinkbottle, -/turf/simulated/floor/plating, -/area/maintenance/lower/xenoflora) -"bcD" = ( -/obj/structure/closet/wardrobe/black, -/obj/random/maintenance/clean, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcE" = ( -/obj/structure/closet/wardrobe/white, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcG" = ( -/obj/structure/undies_wardrobe, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcH" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcK" = ( -/obj/structure/closet/wardrobe/xenos, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcL" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcM" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light/small, -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 6 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/processing) -"bcQ" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "brig_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/westleft{ - req_access = list(2) - }, -/obj/machinery/door/window/brigdoor/eastright{ - req_access = list(2) - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"bcS" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/cargo, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"bcT" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bcU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "rnd_s_airlock_pump" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled, -/area/rnd/external) -"bcV" = ( -/obj/effect/landmark{ - name = "droppod_landing" - }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside1) -"bcY" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bcZ" = ( -/obj/machinery/computer/HolodeckControl{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bda" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdb" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/holodeck_control) -"bdc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bdd" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bde" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bdg" = ( -/obj/machinery/door/airlock{ - name = "Holodeck" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/holodeck_control) -"bdh" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdi" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdj" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bdk" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "holodeck" - }, -/turf/simulated/floor, -/area/holodeck_control) -"bdl" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdn" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bdo" = ( -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdp" = ( -/obj/machinery/button/windowtint{ - id = "holodeck"; - pixel_x = 35; - range = 14; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - pixel_x = 22; - report_danger_level = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdq" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/item/weapon/paper{ - info = "Brusies sustained in the holodeck can be healed simply by sleeping."; - name = "Holodeck Disclaimer" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bds" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bdt" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Holodeck" - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/holodeck_control) -"bdw" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdz" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/obj/structure/sink/kitchen{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled{ - icon_state = "techmaint" - }, -/area/holodeck_control) -"bdA" = ( -/obj/machinery/door/airlock/glass{ - name = "Holodeck" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/holodeck_control) -"bdB" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence) -"bdC" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdE" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdH" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdJ" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bdN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"bqI" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/brig/storage) -"byn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"byP" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bzb" = ( -/obj/machinery/camera/network/security{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"bHK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"bHR" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"bJz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"bMs" = ( -/obj/machinery/door/airlock/glass_external/public, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/tram) -"bMP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bOd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"bPt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"bSx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/landmark/tram, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"bZC" = ( -/turf/simulated/floor/looking_glass, -/area/looking_glass/lg_1) -"ccA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"cdO" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"cpp" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - id_tag = null; - name = "Laundry" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor, -/area/crew_quarters/locker/laundry_arrival) -"cqZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"csb" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"csd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"cwS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"cAR" = ( -/turf/simulated/floor/looking_glass/center, -/area/looking_glass/lg_1) -"cGJ" = ( -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"cGU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"cHW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"cIh" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"cOq" = ( -/obj/random/cutout, -/turf/simulated/floor/plating, -/area/vacant/vacant_site/east) -"cPs" = ( -/obj/machinery/computer/looking_glass{ - lg_id = "one" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/looking_glass/lg_1) -"cPX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"cWS" = ( -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"cXW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"ddU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"dfJ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/bag/trash, -/obj/item/weapon/storage/bag/trash, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"diq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"dju" = ( -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"dlB" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/donkpockets, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"doa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"dxY" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/weapon/tank/emergency/oxygen/engi, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/lowernorthhall) -"dyd" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/security{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"dCc" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/northern_star{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"dCs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"dFD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"dJZ" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"dMu" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"dPC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mopbucket, -/obj/item/weapon/mop, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"dYd" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/cargostore/warehouse) -"dZW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"eby" = ( -/obj/machinery/door/window/brigdoor/southleft{ - dir = 8; - id = "Cell 2"; - name = "Cell 2"; - req_access = list(2) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"eeo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/green{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"efV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"eku" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/target_stake, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"ekC" = ( -/obj/structure/table/steel, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"eow" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/atm{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"epD" = ( -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"erc" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 30 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/lowernorthhall) -"evF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"exW" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"ezn" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"eAd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"eBd" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"eDh" = ( -/obj/machinery/door/airlock{ - name = "Brig Restroom" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig/bathroom) -"eEn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"eFp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/gun/energy/laser/practice, -/obj/item/weapon/gun/projectile/shotgun/pump/rifle/practice, -/obj/item/ammo_magazine/clip/c762/practice, -/obj/item/ammo_magazine/clip/c762/practice, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"eGp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"eJQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "brig_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/brig) -"eQz" = ( -/turf/simulated/floor, -/area/maintenance/lower/mining_eva) -"eQT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"eUS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/computer/timeclock/premade/west, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"fcT" = ( -/turf/simulated/floor/looking_glass{ - dir = 8 - }, -/area/looking_glass/lg_1) -"ffD" = ( -/turf/simulated/floor/looking_glass{ - dir = 10 - }, -/area/looking_glass/lg_1) -"fmY" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"fpU" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/hidden/green, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"fqa" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/brig/bathroom) -"frz" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"fvH" = ( -/obj/machinery/door/airlock{ - name = "Brig Restroom" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"fyp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"fAW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"fCk" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - dir = 4 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"fDx" = ( -/obj/machinery/door/airlock/maintenance/sec{ - name = "Riot Control"; - req_one_access = list(63,24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"fLB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"fOy" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/curtain/open/shower/security, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig/bathroom) -"fPf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"geO" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"ghg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ghr" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"gjD" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"glc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"glH" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"gnt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"gnW" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "briginner"; - name = "Brig"; - req_access = list(2); - req_one_access = newlist() - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"goJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"gud" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/toy/stickhorse, -/obj/machinery/camera/network/security{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/weapon/beach_ball/holoball, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"guV" = ( -/obj/structure/closet, -/obj/random/drinkbottle, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/vacant_site) -"gxa" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"gxM" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"gAn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"gCa" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/lowerhall) -"gJK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"gVe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"gYx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"gZN" = ( -/turf/simulated/floor/looking_glass{ - dir = 9 - }, -/area/looking_glass/lg_1) -"hco" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"hdh" = ( -/obj/machinery/door/airlock/security{ - name = "The Hole"; - req_access = list(2) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"hmx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/machinery/holoposter{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"hoH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"hps" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"hpB" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "northciv_airlock_inner"; - locked = 1 - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "northciv_airlock"; - pixel_x = 25; - pixel_y = -8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/lowernortheva) -"huE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"hzx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"hAe" = ( -/turf/simulated/floor/looking_glass{ - dir = 5 - }, -/area/looking_glass/lg_1) -"hDd" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Firing Range"; - req_access = list(1) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"hFq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"hFG" = ( -/obj/effect/landmark/looking_glass, -/turf/simulated/floor/looking_glass/center, -/area/looking_glass/lg_1) -"hMu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"hOA" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "Cell 2"; - name = "Cell 2 Door"; - pixel_x = 28; - req_access = list(1,2) - }, -/obj/machinery/door_timer/cell_3{ - id = "Cell 2"; - name = "Cell 2"; - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"hPU" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"hQg" = ( -/obj/machinery/vending/hydronutrients/brig{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"hQw" = ( -/obj/machinery/atmospherics/unary/outlet_injector, -/obj/effect/floor_decal/corner/lightorange, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"hQP" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"hTw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"hTz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"hTQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "brig_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/brig) -"hYh" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/map_helper/airlock/door/int_door, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "northciv_airlock_inner"; - locked = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/lowernortheva) -"icB" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"iee" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"igw" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"ilZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"imW" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"iqO" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"iti" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"iue" = ( -/turf/simulated/floor/looking_glass{ - dir = 1 - }, -/area/looking_glass/lg_1) -"iwE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"ixF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"iEk" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "Cell 1"; - name = "Cell 1 Door"; - pixel_x = 28; - req_access = list(1,2) - }, -/obj/machinery/door_timer/cell_3{ - id = "Cell 1"; - name = "Cell 1"; - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"iKy" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/lower/mining_eva) -"iUF" = ( -/obj/structure/table/steel, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"iWx" = ( -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/machinery/cryopod{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"jbU" = ( -/obj/effect/landmark{ - name = "maint_pred" - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"jio" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"jkt" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"jnj" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"jva" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"jzW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"jCD" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "briginner"; - name = "Brig"; - req_access = list(2); - req_one_access = newlist() - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"jDg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"jDI" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"jIc" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"jKD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"jPk" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"jQL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"jSU" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/mauve/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"jTQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"kbZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/structure/flora/pottedplant, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"kdi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"kfT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"kgk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"kjX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"klO" = ( -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"kmb" = ( -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"kuB" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"kwN" = ( -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"kxx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"kyE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"kAm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"kAG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"kCz" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"kEs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"kKl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"kMG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Locker Room" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"kPT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"kUN" = ( -/obj/machinery/camera/network/security{ - dir = 5 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"laR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"lbu" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/paleblue/bordercorner2, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"ldI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"lhM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - id = "Cell 2"; - name = "Cell 2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"loc" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"loj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"lpK" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"lry" = ( -/obj/structure/catwalk, -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/drinkbottle, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"lwL" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "brigouter"; - name = "Brig"; - req_access = list(2); - req_one_access = newlist() - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"lwN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"lxo" = ( -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom/department/security{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"lxU" = ( -/obj/machinery/holoposter, -/turf/simulated/wall, -/area/hallway/lower/first_west) -"lDW" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"lEg" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"lIj" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"lLD" = ( -/obj/machinery/camera/network/security{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"lMf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"lMK" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) -"lNp" = ( -/turf/simulated/floor/looking_glass/optional{ - dir = 4 - }, -/area/looking_glass/lg_1) -"lNt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"lQu" = ( -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/structure/table/steel, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"lQQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"lSW" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/blanks{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/weapon/storage/box/blanks{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/ammo_magazine/clip/c762/practice, -/obj/item/ammo_magazine/clip/c762/practice, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -28 - }, -/obj/item/ammo_magazine/m45/practice, -/obj/item/ammo_magazine/m45/practice, -/obj/item/ammo_magazine/m45/practice, -/obj/item/ammo_magazine/m45/practice, -/obj/item/ammo_magazine/m45/practice, -/obj/item/ammo_magazine/m45/practice, -/obj/item/ammo_magazine/m9mmt/practice, -/obj/item/ammo_magazine/m9mmt/practice, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"lTn" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/gasstorage) -"lTz" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"lUk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"lWT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/machinery/holoposter{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"mhu" = ( -/obj/structure/closet/secure_closet/brig, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"mon" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"mrO" = ( -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"mrR" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"mvM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"mAR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"mCe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"mGH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"mGP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"mHm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"mHO" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"mIw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"mOz" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/computer/cryopod{ - name = "asset retention console"; - pixel_y = -30 - }, -/obj/effect/landmark/tram, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"mRF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/tether/surfacebase/tram) -"mRY" = ( -/obj/structure/catwalk, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"mSz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"mTw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = -22 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"mYf" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "surfbriglockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/surfacebase/security/brig) -"mYO" = ( -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"mZO" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/holoposter{ - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"naC" = ( -/turf/simulated/wall/r_wall, -/area/medical/virologyisolation) -"ndH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"neZ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"nis" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"niz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"njE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"nlo" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) -"nmf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"nmD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"npK" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"nsp" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ntZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"nvD" = ( -/obj/machinery/seed_storage/brig{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/obj/machinery/camera/network/security{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"nwH" = ( -/obj/structure/closet/crate, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"nBm" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"nBT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"nDD" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"nID" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"nKz" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "atrium" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/lower/vacant_site) -"nOB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"ocx" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - id = "Cell 1"; - name = "Cell 1" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"odn" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/lowerhall) -"ofS" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"ofW" = ( -/obj/structure/disposalpipe/tagger{ - dir = 2; - name = "package tagger - Void"; - sort_tag = "Void" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"ohi" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/research) -"oib" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"okO" = ( -/obj/machinery/door/airlock{ - name = "Visitation"; - req_one_access = list(38,63) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"oli" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"oox" = ( -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"orf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/security{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"orF" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/public_garden_one) -"osh" = ( -/obj/effect/floor_decal/borderfloor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ovG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"owv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"ozx" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"oKY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"oQm" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"oRz" = ( -/turf/simulated/floor/looking_glass{ - dir = 4 - }, -/area/looking_glass/lg_1) -"oTK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"oVq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"oVr" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"paY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"pdo" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/plating, -/area/maintenance/lowmedbaymaint) -"pea" = ( -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"pjs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"plW" = ( -/obj/machinery/computer/cryopod{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"pmr" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"pmV" = ( -/obj/machinery/atmospherics/unary/outlet_injector, -/obj/effect/floor_decal/corner/lightorange{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"ptv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"pyD" = ( -/obj/machinery/door/airlock/maintenance/common{ - name = "Mining Maintenance Access" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/tether/surfacebase/north_stairs_one) -"pCj" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/brig) -"pKE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"pZb" = ( -/obj/structure/closet/wardrobe/orange, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"qfJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/landmark/tram, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"qhq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"qjE" = ( -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"qmc" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"qor" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"qoK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"qsl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"qwm" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"qwV" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/brig) -"qDR" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/wall, -/area/maintenance/substation/cargostoresubstation) -"qJT" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/gglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/glasses/gglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = -28 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"qKn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Dorms & Cafe" - }, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 - }, -/area/tether/surfacebase/surface_one_hall) -"qOa" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"qOA" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"qPR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 26 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"qRI" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"qWk" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker/laundry_arrival) -"qWW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"qYs" = ( -/obj/machinery/door/airlock/maintenance/sec{ - name = "Riot Control"; - req_one_access = list(63,24) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"raS" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark/tram, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"rww" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"rxq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"rxG" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"rzZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"rBG" = ( -/obj/structure/closet, -/obj/item/weapon/material/minihoe, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"rDJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/weaponsrange) -"rHb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"rOh" = ( -/obj/machinery/disposal, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"rQe" = ( -/obj/structure/table/steel, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"rRC" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"rSG" = ( -/obj/machinery/light/small, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"rVb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"rVW" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"rYl" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"rYL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/cryopod/robot/door/tram, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether/surfacebase/tram) -"rZZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"sbD" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_one) -"scf" = ( -/obj/effect/floor_decal/corner/lightorange, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"svZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"sxc" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"sya" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/visitor_dining) -"szT" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"sEz" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"sHO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"sIO" = ( -/turf/simulated/floor/looking_glass{ - dir = 6 - }, -/area/looking_glass/lg_1) -"sLi" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"sQB" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"sVX" = ( -/obj/structure/table/steel, -/obj/item/weapon/material/twohanded/fireaxe/foam, -/obj/item/toy/nanotrasenballoon, -/obj/item/weapon/deck/cards, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"tak" = ( -/obj/structure/table/steel, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"tdh" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"tiJ" = ( -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"trV" = ( -/turf/simulated/wall/r_wall, -/area/tether/surfacebase/security/brig/storage) -"tvk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"tvA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"txZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"tCV" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"tEo" = ( -/obj/random/trash_pile, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) -"tLx" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark/tram, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/tram) -"tMD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"tMP" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"tNJ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"tQH" = ( -/obj/machinery/camera/network/security{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"tRA" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"tRJ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "lg_1"; - name = "Looking Glass Lock"; - pixel_x = 28; - pixel_y = 28; - specialfunctions = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/looking_glass/lg_1) -"tRX" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"tTC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"tVd" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"ubK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"ucv" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_security{ - name = "Solitary Confinement"; - req_access = list(2) - }, -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"uge" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"uiK" = ( -/turf/simulated/wall, -/area/tether/surfacebase/security/weaponsrange) -"uqH" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance/cargo, -/obj/random/maintenance/research, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) -"uuu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"uxF" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Locker Room" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"uzs" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/green{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"uAv" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"uAA" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/mauve/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"uDQ" = ( -/obj/machinery/button/remote/airlock{ - id = "brigouter"; - name = "Outer Brig Doors"; - pixel_x = 24; - pixel_y = -4; - req_access = list(2) - }, -/obj/machinery/button/remote/airlock{ - id = "briginner"; - name = "Inner Brig Doors"; - pixel_x = 34; - pixel_y = -4; - req_access = list(2) - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"uEK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"uFh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/public_garden_maintenence) -"uFs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"uFS" = ( -/obj/machinery/door/airlock/security{ - name = "Brig Recreation Storage"; - req_one_access = list(63) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"uHS" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"uKS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"uOe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"uOA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"uUP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/tether/surfacebase/surface_one_hall) -"vfy" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"vhI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"vih" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"vlJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/research, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"vCb" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"vDb" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"vHP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"vHW" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"vRL" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"vSS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"vTn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 10 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor, -/area/tether/surfacebase/security/gasstorage) -"vVr" = ( -/obj/machinery/computer/arcade/orion_trail, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"waR" = ( -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/weaponsrange) -"wjq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"wpZ" = ( -/obj/machinery/door/airlock/glass_security{ - id_tag = "brigouter"; - name = "Brig"; - req_access = list(2); - req_one_access = newlist() - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"wtD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"wwm" = ( -/obj/effect/floor_decal/corner/lightorange{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/shifted{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/lowerhall) -"wwo" = ( -/obj/machinery/door/airlock{ - id_tag = "visitdoor"; - name = "Visitation Area"; - req_access = list(1) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"wxa" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"wxV" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"wzA" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/mining_eva) -"wQS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"wRe" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"wUW" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"wVB" = ( -/obj/machinery/door/window/brigdoor/southleft{ - dir = 8; - id = "Cell 1"; - name = "Cell 1"; - req_access = list(2) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"wVI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"wXW" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tether/surfacebase/tram; - base_turf = /turf/simulated/floor/tiled/techfloor/grid; - docking_controller = null; - landmark_tag = "escape_station"; - name = "Tether Surface Base" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/tram) -"xdV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"xgQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"xnn" = ( -/obj/machinery/holoposter, -/turf/simulated/wall, -/area/crew_quarters/visitor_laundry) -"xpP" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"xtS" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/tether/surfacebase/security/brig/bathroom) -"xzn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"xAT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_one_hall) -"xFG" = ( -/obj/structure/closet/secure_closet/brig, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig/storage) -"xOH" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/looking_glass/lg_1) -"xVX" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhall) -"xYx" = ( -/obj/structure/table/steel, -/obj/machinery/microwave, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"yaU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/lowernorthhall) -"ybc" = ( -/obj/structure/table/steel, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightorange{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/brig) -"ygY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -asP -asQ -asQ -asQ -asQ -asQ -asR -asQ -asQ -asR -asQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGD -aaa -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(3,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aaa -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aHL -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(4,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aHo -aad -aad -aad -aad -aad -aad -aad -aad -aHL -aad -aad -aHo -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(5,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(6,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGF -aad -aad -aad -aad -aad -aad -aad -aad -aad -aHL -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(7,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(8,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aHL -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(9,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(10,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aHL -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(11,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(12,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGG -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(13,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGH -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(14,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(15,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(16,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(17,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(18,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(19,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(20,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -akH -aad -aad -aad -aad -aad -aad -aad -aad -akH -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(21,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajO -ajO -ajV -ajV -ajV -ajV -ajV -ajV -ajV -ajV -ajO -ajO -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(22,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajO -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -adK -aeo -aeo -aeo -aeo -aeo -adK -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -auK -auK -auK -auK -auK -auK -aEQ -aad -aad -aGE -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(23,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -adK -aep -adK -aeV -aeo -afq -adK -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -aAs -aBu -aCc -aCc -aCc -aCc -aER -aib -aib -aGI -aad -aad -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(24,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -adK -aep -aep -aeo -aeo -aeo -adK -aah -aah -aah -aah -aah -aah -aah -aoq -aoq -aoq -aoq -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -aaT -auK -auK -auK -auK -auK -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(25,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -adK -adK -adK -adK -adK -adK -adK -ajS -aah -aah -aah -aah -aah -aah -aoq -aoq -aoq -aoq -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(26,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -gZN -fcT -fcT -fcT -fcT -fcT -ffD -ajS -aah -aah -aah -aah -aah -aah -aor -aoV -aoV -aqm -aci -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(27,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -iue -cAR -cAR -cAR -cAR -cAR -bZC -ajS -aah -aah -aah -aah -aiy -aiy -aiy -aoW -apH -aiy -aqT -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -abB -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(28,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -iue -cAR -cAR -cAR -cAR -cAR -bZC -ajS -aah -aah -aah -aah -aiy -aoe -aos -aoX -apI -aqn -aqT -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(29,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -iue -cAR -cAR -hFG -cAR -cAR -bZC -ajS -aah -aah -aah -aah -aiy -aof -aot -aoY -apJ -aqo -aqT -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -auK -aAl -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baq -aad -aad -aad -baq -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(30,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajN -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -iue -cAR -cAR -cAR -cAR -cAR -bZC -ajS -aah -aah -aah -aah -aiy -aiy -aiy -aoZ -apK -aiy -aqT -aah -aah -aah -aah -aah -aah -aah -aah -agv -agv -agv -agv -agv -agv -agv -azs -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bar -aad -aad -aad -bar -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(31,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajO -akL -akL -akL -akL -akL -akL -akL -akL -akL -akL -ajO -iue -cAR -lNp -lNp -lNp -cAR -bZC -ajS -aah -agU -agU -agU -agU -agU -aou -apa -apL -aqp -aqU -aah -aah -aah -aah -aah -aah -aah -aah -agv -agL -agW -ahH -adV -aip -aiJ -azs -aaT -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baq -baF -baF -baF -baq -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(32,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -ajO -akO -ajO -bdg -bdk -bdk -bdk -bdk -bdv -ajO -bdz -ajO -hAe -oRz -cPs -xOH -tRJ -oRz -sIO -ajS -aah -agU -ahi -alE -aiz -ajo -aov -apb -apM -aqq -aqU -aah -aah -aah -aah -aah -aah -aah -aah -agv -agO -agZ -ahO -aij -ais -aiK -azs -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adK -adK -adK -adK -adK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(33,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -ajO -ajO -ajO -bdh -bdl -bcZ -bdq -bdt -bdw -ajO -ajO -ajS -ajS -ajS -ajS -ajS -atd -ajS -ajS -ajS -aah -agU -ahj -ahD -aiA -agU -agU -apc -apN -agU -aqU -aah -aah -aah -aah -aah -aah -aah -aah -agv -agR -ahf -ahP -ahP -aiH -aiL -azs -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(34,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -ajO -bda -bdi -bdm -bdo -bdp -bdu -bdx -bdy -bdA -bdC -akU -ali -sbD -abK -orF -ajS -aah -aah -aah -agU -akm -ahE -apm -agU -aow -apd -apO -aqr -aqU -acs -acs -acs -acs -asz -asz -asz -asz -asz -agV -ahh -ahQ -ain -aiI -aiM -azs -aAu -auK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(35,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -ajO -bdb -ajO -ajO -ajO -ajO -ajO -ajO -ajO -ajO -bdD -akM -alj -alw -ajS -ajS -ajS -aah -aah -aah -agU -agU -anw -anM -agU -aox -ape -apP -aqs -aqV -arn -arE -arP -aqV -agk -agp -atD -atD -asz -agv -aht -agv -agv -agv -agv -azs -aAx -auK -aBv -aBv -aBv -aBv -aBv -aBv -aBv -aBv -aBv -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(36,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -ajL -bdc -ajL -aah -aah -aah -aah -ajS -ajS -akD -bdE -akN -akN -alx -alM -ajS -ajS -aah -aah -aah -aah -agU -agU -agU -agU -aoy -ape -apQ -aqt -aqV -aro -arF -arQ -aqV -asA -asW -asW -aug -agC -auY -avE -awl -awS -axA -ayr -azt -aAy -aBw -aCf -aCV -aCd -aDy -aES -ajB -aFY -aGd -aBv -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(37,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -ajL -ajL -bdd -ajS -ajS -ajS -ajS -ajS -ajS -akv -akE -bdF -bdJ -bdM -bdN -alN -ame -ajS -ajS -aah -aah -aah -aah -aah -aah -agU -aoz -ape -apP -aqu -aqV -arp -arF -arR -aqV -asB -asX -asX -agw -auE -abg -avF -awm -awT -axB -ays -ays -ays -acu -ake -akf -aDz -aEe -aET -aCe -cdO -glH -aBv -aah -aah -aah -aah -aKL -aKL -aKL -aKL -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(38,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -ajL -akV -bde -ajT -ajY -akb -akh -akk -akq -akw -akE -bdG -akW -akN -aly -alN -amf -amA -ajS -aah -aah -aah -aah -aah -aah -agU -aoA -apf -apR -aqv -aqV -arq -arG -arS -aqV -asC -ags -agt -auh -auE -aDr -avG -ahT -auK -aAj -abN -abN -abN -abN -abN -abN -abN -abN -abN -abN -ygY -aGX -aBv -aah -aah -aah -aah -aKL -auW -auW -aKL -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(39,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -ajL -akZ -ajM -ajT -ajY -akb -akh -akk -akr -akx -akE -bdH -akX -akN -aly -alN -amg -amB -ajS -aah -aah -aah -ahl -ahl -ahl -agU -aoB -apg -apS -aoB -aqV -arr -arH -arT -aqV -ahl -ahl -ahl -ahl -ahl -ava -avH -awn -auK -avh -abN -aeR -aeR -aji -agF -agP -aiQ -agD -aio -abN -xgQ -ofS -aBv -aah -aah -aah -aah -aKL -aLn -aLY -aKL -aah -aah -aah -aad -aad -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(40,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -ajL -akZ -abs -ajS -ajS -ajS -ajS -ajS -ajS -aky -akE -bdI -bdK -akN -aly -alN -amh -ajS -ajS -aah -aah -aah -ahl -ahG -aiD -ajp -aoC -aph -apT -aqw -aqW -ars -arI -arU -asj -asD -asY -atE -aui -auF -avb -avI -awo -auK -avh -abN -aeR -aeR -aeR -agF -agP -ahv -ahm -aiB -abN -lMf -aGX -aBv -aBv -aBv -aBv -aBv -aKL -aLo -bbo -aKL -aNv -aoq -aad -aad -aad -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(41,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -ajL -aLm -ajQ -aah -aah -aah -aah -aah -ajS -ajS -akF -akP -bdL -alk -alz -alO -ajS -ajS -aah -aah -aah -aah -ahl -afz -aiE -ajq -anx -anP -anx -anx -aqX -anx -anP -anx -ask -anx -asZ -anx -anx -anx -anx -acJ -awp -auK -avh -abN -aeR -aeR -aeR -agF -agP -ahw -aiq -aiB -abN -lwN -icB -aFI -aFJ -aFK -aJr -aJX -aKM -aLp -aMa -aMJ -aNw -aoq -aad -aad -aad -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -ano -ano -ano -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(42,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -ajL -akZ -abt -ajU -aki -aki -aki -akl -aah -ajS -ajS -akQ -ala -all -alA -ajS -ajS -aah -aah -aah -aah -aah -ahl -ahI -anN -aog -aoD -api -apU -aqx -aqY -aoD -arJ -arV -asl -asE -aoD -atF -auj -auG -avc -avJ -awq -auK -avh -abN -aeR -aeR -aeR -agG -aha -ahy -aiu -aiB -alS -vlJ -uAA -aHp -aHN -aIB -aJs -aJY -aKN -aLq -aMb -aMK -aNw -aoq -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(43,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -ajL -bcY -bdn -bdj -bdn -bdn -bds -ajQ -aah -aah -ajS -ajS -lWT -alm -ajS -ajS -aah -aah -aah -aah -aah -aah -ahl -ahJ -anO -ajs -ahl -ahl -ahl -ahl -ahl -ahl -ahl -arW -asm -ahl -ahl -atG -auk -atH -auK -auK -auK -auK -axD -abN -aeR -aeR -aeR -agF -ahb -ahF -aih -aiv -alS -cIh -aGX -awn -awn -awn -anG -awn -aKL -aLr -bcU -aKL -aNx -aoq -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(44,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -akB -akB -akB -akB -akB -akB -akB -uiK -uiK -uiK -bcY -abu -kdi -uFh -ajL -ajS -alc -aln -ajS -aah -aah -aah -aah -aah -aah -aah -ahl -ahK -anP -ajt -ahl -apj -apj -apj -apj -apj -arK -apl -apo -apl -ata -atH -aul -auH -auK -avK -axI -awU -aAk -abN -aeR -aeR -agl -agN -ahd -ahY -aiw -aix -abN -ovG -jkt -awn -aBM -aIC -aCC -aJZ -aKL -aLs -aMd -aKL -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(45,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -eku -fPf -lIj -eGp -lIj -rxG -lxo -npK -qJT -uiK -ajM -aby -aki -akz -akG -akR -aeT -alf -akR -akR -akR -akR -akR -aah -aah -aah -ahl -ahL -anP -ajt -ahl -apk -apV -aqy -apl -apl -apl -apl -apl -apl -apl -atH -aum -auI -avd -avL -aws -abN -abN -abN -aeR -aeR -aeR -agF -ahe -ahF -aim -aiU -alT -ajd -aGX -awn -aHP -aID -aJv -aJZ -aKL -auW -auW -aKL -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(46,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -waR -dCs -waR -vhI -waR -nwH -eFp -bOd -lSW -uiK -ajM -bcY -bdn -bdn -bdB -akS -ald -alo -akR -akR -ami -amC -akR -akR -akR -akR -ahl -ahM -anP -aju -aoE -apl -apl -apl -apl -apl -apo -apl -aqy -apl -apl -atH -aun -auJ -ave -avM -aws -abN -abW -acp -afe -aeR -aeR -agG -aha -ahy -aiB -ajm -abN -kyE -aGX -adn -adn -adn -aCK -aKa -aKL -aKL -aKL -aKL -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(47,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -eku -uOA -pmr -gnt -mIw -kuB -pea -eEn -gjD -uiK -ajL -akl -aks -ajL -acj -akR -ale -alp -alr -alP -alr -alr -amS -amX -ana -ang -ans -any -anP -ajv -aoF -apX -apX -aqA -aqZ -apl -apl -apl -apl -apl -apl -atH -atH -atH -auK -avN -aws -abN -aiR -acp -afe -aeR -aeR -agF -agP -aik -aiF -akp -alS -ygY -aGX -adn -alY -adn -aCW -aKa -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(48,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -waR -vhI -waR -dCs -waR -tRX -eFp -kjX -dfJ -uiK -aah -akn -abE -jbU -akJ -akT -alg -alq -alB -alQ -amj -amD -amT -amY -anb -anh -ant -auZ -acT -adj -aoG -apn -apn -are -apl -apl -apl -apl -apl -apl -atb -apj -apj -auK -avf -awr -aws -abN -abN -abN -aeR -aeR -aeR -agF -agP -ahF -agx -alI -alU -aje -oli -adn -alZ -adn -adn -adn -adn -adn -adn -adn -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adK -adK -adK -adK -adK -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(49,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -eku -rHb -lIj -dFD -lIj -dyd -klO -geO -rDJ -uiK -aah -abC -abF -abG -abF -akR -alh -als -akR -alR -ajz -amE -akR -akR -akR -akR -ahl -anz -anP -adk -aoE -apo -apo -apl -apl -aqy -apl -apl -apl -apl -apj -apj -apj -auK -avg -avP -awt -abN -acb -abN -aeR -aeR -ane -agF -agP -ail -aiG -alL -alS -ygY -hps -adn -ama -adn -amp -amv -amJ -amO -amO -adn -adn -adn -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baq -baG -baG -baG -baq -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(50,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -akB -akB -akB -akB -akB -akB -akB -akB -akB -akB -akB -hDd -uiK -gCa -gCa -gCa -gCa -lTn -lTn -lTn -qYs -lTn -akR -akR -akR -akR -aah -aah -aah -ahl -anA -anP -adu -ahl -app -apl -apl -apl -aqy -apl -apl -apl -asF -apj -apj -apj -auK -avh -abm -abm -abN -abN -abN -abN -abN -abN -abN -abN -abN -abN -alS -alS -gxM -tvA -alV -amb -alV -amr -amx -amK -amO -amO -and -alY -adn -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bar -aad -aad -aad -bar -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(51,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -bqI -pZb -rBG -mhu -xFG -bqI -txZ -uge -gCa -epD -epD -gCa -fCk -fCk -exW -bJz -lTn -aah -aah -aah -aah -aah -aah -aah -ahl -ahL -acV -adF -ahl -apj -apj -apj -apl -apl -apl -apl -apl -apj -apj -apj -apj -auK -avh -abm -abn -abn -abn -acx -afg -abv -abm -aCm -akg -aDy -akj -aCV -aCV -szT -jSU -alW -amd -alW -ams -amy -amL -amL -amW -adn -adn -adn -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baq -aad -aad -aad -baq -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(52,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -bqI -sxc -ilZ -njE -qOa -bqI -kfT -fmY -gCa -epD -epD -gCa -vTn -fpU -rVW -bJz -lTn -aah -aah -aah -aah -aah -aah -aah -ahl -ahN -ada -adH -ahl -apj -apj -apj -apj -apl -apl -apl -aso -apj -apj -apj -apj -auK -avh -abm -abv -abv -abv -acD -afu -agm -abm -aCn -aDc -aDJ -aDJ -aDJ -aDJ -uOe -nis -adn -amn -amo -amt -amz -amN -amR -amR -and -alY -adn -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(53,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -bqI -sVX -mTw -rOh -gud -bqI -nOB -csd -gCa -epD -mHm -gCa -ezn -qPR -hco -ubK -lTn -aah -aah -aah -aah -aah -aah -aah -ahl -ahL -anP -adI -ahl -apj -apj -apj -apj -apl -apo -apo -asp -apj -apj -apj -apj -auK -avh -abm -abw -abw -abw -abv -afA -abv -abm -aCo -aDd -aDg -aEm -aDg -aDg -aGm -aGW -adn -amo -amo -amu -amI -amN -amR -amR -adn -adn -adn -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(54,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -bqI -bqI -uFS -trV -bqI -bqI -paY -tQH -gCa -odn -hdh -odn -lTn -fDx -lTn -lTn -lTn -odn -odn -aah -aah -aah -aah -aah -ahl -ahL -anP -adu -ahl -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -auK -avh -abm -abD -abv -abv -adz -afP -agn -agE -ajJ -aDe -aDK -aEn -aDe -aDe -aGn -aGX -adn -adn -adn -adn -adn -adn -adn -adn -adn -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(55,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -gCa -owv -kxx -kAm -jKD -jKD -dJZ -ntZ -lTz -gAn -mAR -orf -ixF -vSS -tTC -iqO -xVX -rww -odn -aah -aah -aah -aah -aah -ahl -anB -anP -adu -ahl -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -auK -avh -abm -abw -abw -abw -adM -afU -abv -abm -ajW -aDf -aDL -aDg -aFe -aDg -aGo -aGY -awn -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aOR -aOR -aOR -aOR -aOR -aOR -aOR -aOR -aOR -aOR -aTW -aTW -aTW -aTW -aVE -aTW -aTW -aTW -aTW -aTW -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(56,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aah -gCa -jTQ -nBT -hFq -hOA -vRL -hFq -iEk -vRL -hFq -neZ -diq -uDQ -mvM -fLB -dMu -jIc -wRe -odn -aah -aah -aah -aah -aah -ahl -ahR -anP -adu -ahl -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -auK -avh -abm -abv -abv -abv -adM -afU -abv -abm -ajX -aDf -aDL -aDg -aFe -aDg -aGo -aGX -awn -aBO -aBO -aBO -aah -aah -aah -aah -aah -aah -aah -aah -aOR -aPl -aPl -aQo -aQR -aRu -aPl -aPl -aPl -aOR -aTW -aUv -aUy -aUv -aUy -aUv -aUy -aUv -aUy -aTW -aTW -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(57,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -gCa -gCa -ucv -pCj -eJQ -eby -pCj -eJQ -wVB -pCj -pCj -okO -qwV -wpZ -lwL -abT -abT -abT -abT -abT -abT -abT -abT -abT -lxU -ahL -anP -adu -ahl -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -auK -avh -abm -abI -abI -abI -adM -afU -abv -abm -aka -aFf -akc -akd -aFf -aFf -aGp -aGZ -aHt -aBN -aIa -aBO -aah -aah -aah -aah -aah -aah -aah -aah -aOR -aPl -aPL -aQp -aQS -aQp -aRP -aSw -aQp -aTJ -aTX -aUw -aUR -aUR -aUR -aUR -aUR -aUR -aUR -aUy -aTW -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(58,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -gCa -iWx -qsl -pCj -mrO -kmb -pCj -tiJ -kmb -pCj -kUN -cGU -qwV -nmf -hMu -abT -bbd -auM -baZ -bbw -bbU -cGJ -bch -air -ahl -ahK -add -adJ -ahl -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -apj -auK -avh -abm -abI -abI -abI -adN -afU -agr -abm -aCs -aDh -aDN -aEp -aFg -aFL -aGq -aHa -awn -aBP -aCv -aBO -aBO -aBO -aBO -aBO -aBO -aBO -aBO -aBO -aOR -aPl -aPM -aQq -aQT -aRv -aRP -aSx -aTc -aTK -aTX -aUx -aUA -aUx -aUA -aUx -aUA -aUx -aXd -aXd -aTW -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(59,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -gCa -kwN -lLD -pCj -qjE -bzb -pCj -qjE -bzb -pCj -bcQ -hTQ -qwV -wVI -oox -abT -amQ -bbe -bbe -bbe -bbe -bbe -bbe -bci -bbG -bbH -bbN -adu -ahl -apj -apj -apj -apj -apj -apj -apj -apu -apu -apu -apu -apu -apu -avj -abm -abm -abm -abm -abm -afX -abm -abm -awn -awn -awn -aEq -awn -awn -awn -awn -awn -aBP -aCw -aLv -aCY -aCZ -aLv -aMf -aLv -aLv -aLv -aLv -aej -aPm -aPN -aQr -aQT -aRw -aRQ -aSy -aTd -aTK -aTX -aUy -aUv -aUy -aUv -aUy -aUv -aUy -aXd -aXd -aTW -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(60,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -gCa -wwm -jio -pCj -dju -kmb -pCj -dju -kmb -pCj -jzW -hzx -qwV -wtD -wQS -abT -anp -aeW -aeW -aeW -aeW -aeW -aeW -aeW -aeW -ahL -bbO -adu -ahl -apu -apu -apu -apu -apu -apu -apu -apu -uqH -mHO -csb -nBm -asn -atl -axC -kCz -csb -imW -tMP -alJ -apu -aAm -aCt -aDi -aDO -aEr -aFh -aDi -aah -aah -aBO -aBP -aIG -aCX -aIa -aIa -aIa -aIa -aIa -aIa -aIa -aIa -aOR -aPn -aPO -aQs -aQT -aRx -aRQ -aSx -aTe -aTL -aTX -aUz -aUR -aUR -aUR -aUR -aUR -aUR -aUR -aUx -aTW -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(61,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -gCa -gCa -gCa -pCj -pCj -lhM -pCj -pCj -ocx -pCj -pCj -wwo -qwV -gnW -jCD -iKy -anp -aeW -amk -amF -amU -agz -agI -ani -aeW -ahS -bbP -bbS -bbG -apW -aqz -apW -arh -axS -axS -bcl -apu -agy -alb -alb -alb -alb -alC -axE -ayD -alF -alG -alH -alK -acW -aAn -aAv -aDi -aDP -aEs -aFi -aDi -aah -aah -aBO -aCh -aIG -aBO -aKh -aIa -aDx -aBO -aMM -aNy -aDM -aIa -aOR -aPo -aPP -aQr -aQT -aRy -aRv -aSz -aTf -aOR -aTW -aUA -aUx -aUA -aUx -aUA -aUx -aUA -aUx -aTW -aTW -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(62,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adK -aad -aad -aad -pCj -wjq -wjq -tdh -lQu -dPC -tdh -qmc -ofW -qoK -uzs -kEs -hMu -iKy -anp -aeW -aml -afT -afT -afT -agJ -anj -anu -anC -adh -adO -ahl -bcn -axS -bcl -azb -apW -apW -apW -bbX -aiC -alt -alv -alv -apu -bcq -avT -avT -axe -avT -avT -avT -avT -aBJ -aAw -aDi -aDQ -aEt -aFj -aDi -aah -aah -aBO -aIa -aIG -aJF -aJF -aJF -aJF -aJF -aJF -aJF -aJF -aJF -aIh -aPp -aPl -aQt -aQU -aRz -ajn -aSA -aTg -aOR -aTW -aUB -ajf -ajg -ajh -aVU -aVU -aWO -aTW -aTW -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(63,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -mYf -rQe -ybc -rzZ -hTw -hTw -hTw -hTw -hTw -uFs -ddU -wxV -nID -iKy -anp -aeW -aft -amG -afr -afr -amG -agX -ahn -ahU -anP -adu -aoH -aoH -aoH -aoH -aoH -apu -apu -apu -apu -aqb -ate -atK -atL -apu -bcr -avT -awD -axf -axS -axS -axS -aAM -aBJ -aAE -aDi -aDi -aDi -aDi -aDi -aah -aah -aBO -aIa -aIG -aJF -aKi -aKi -aLx -aMg -aMN -aNz -aNU -aNU -aIh -aPq -aPQ -aOR -aQV -aRA -aRS -aRA -aTh -aOR -aOR -aUC -aOR -aVk -aVF -aVV -aVV -aOR -aOR -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aaa -"} -(64,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -pCj -oTK -oTK -pKE -hQw -eeo -oVq -oVq -pjs -loj -vih -dlB -xYx -iKy -anp -aeW -amm -amH -afr -agA -amH -agY -ahn -ahL -anP -adu -aoI -apq -apY -aqB -aoH -aoH -bcd -bcd -apu -aqb -ate -apu -apu -apu -adr -avT -agb -agb -agb -agb -agb -agb -aBJ -aAE -aBO -aah -aah -aah -aah -aah -aah -aBO -aIa -aIG -aJF -aKj -aKT -aLy -aMh -aMO -aNA -aNA -aOw -aIh -aPr -aPR -aOR -aQW -aRB -aRT -aSB -aTi -aTM -aTM -aUD -aTM -aEu -aEA -aWq -aWq -aQW -aOR -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aaa -"} -(65,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -pCj -tdh -tdh -ccA -jDI -ptv -vVr -frz -fqa -fqa -eDh -fqa -fqa -fqa -anp -aeW -afv -amG -afr -amZ -amG -agX -ahn -ahS -anP -adW -aoI -apr -apr -apr -ara -aoH -aoH -bcd -apu -asJ -ate -apu -bcd -apu -bcs -azG -agb -agc -agc -agc -agh -agb -aBJ -aAE -aBO -aah -aah -aah -aah -aah -aah -aBO -aCi -aHc -aJF -aKk -aKk -aLz -aMi -aMP -aNB -aNV -aNV -aIh -aPs -aPS -aOR -aQX -aRC -aRU -aSC -aTj -aSC -bcP -aSC -aUS -aEv -aSC -aEB -aWr -aQW -aOR -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baW -aaa -aaa -aaa -"} -(66,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -pCj -tdh -tdh -pKE -jDI -ptv -pCj -pCj -fqa -fOy -xdV -tMD -ekC -fqa -anp -aeW -afw -afV -agu -agu -agu -ank -aho -ahV -adi -aeq -aoJ -aps -apZ -aqC -arb -art -aoH -bcd -apu -aqb -ate -apu -bcd -apu -bcB -azK -bbQ -agc -agc -agc -agc -agb -aBJ -aAE -aBO -aah -aah -aah -aah -aah -aah -aBO -aIb -aHc -aJF -aJF -aJF -aJF -aMj -aMQ -aJF -aJF -aJF -aIh -aPq -aPT -aOR -aQY -aRA -aRV -aQV -aTh -aOR -aOR -aOR -aOR -aOR -aOR -aeu -aOR -aOR -aOR -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aoq -aoq -asG -"} -(67,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -pCj -wjq -wjq -pKE -pmV -loj -plW -tdh -fqa -fOy -eAd -ozx -iUF -fqa -anp -aeW -afr -afW -amV -agB -agK -anl -aeW -ahU -aiN -aet -aoI -apr -apr -aqD -arc -aru -aoH -bcd -apu -aqb -ate -apu -bcd -apu -bcs -azU -agb -agc -agc -agc -agc -agb -aBJ -aAE -aBO -aah -aah -aah -aah -aBO -aBO -aBO -aIc -aIJ -aIh -aKl -aKU -aLA -aMk -aMR -aNC -aNW -aOx -aJI -aPt -aJI -aJI -aQy -aRD -aRW -aSD -aTk -aIh -aah -aah -aah -aah -aVn -aTZ -aWs -aVn -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aoq -aoq -asS -"} -(68,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -mYf -rQe -tak -lEg -scf -mYO -mYO -mYO -fqa -fOy -rSG -fqa -fqa -fqa -anp -aeW -aeW -aeW -aeW -aeW -aeW -aeW -aeW -ahW -aiO -aew -aoI -apt -aqa -aqE -ard -arv -aoH -bcd -apu -aqb -ate -apu -bcd -apu -aiW -avT -agb -agc -agc -agc -agc -agb -aBJ -aAE -aBO -aah -aah -aah -aah -aBO -aHb -aBt -aBt -aIK -aIh -aKm -aJI -aLB -aMl -aMS -aND -aNX -aND -aND -aPu -aPU -aPU -aQZ -aRE -aRX -aSE -aSE -aIh -aah -aah -aah -aah -aVn -aTZ -aWt -aVn -aVn -aVn -aVn -aVn -aVn -aVn -aVn -aVn -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aoq -aoq -asS -"} -(69,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -pCj -oTK -oTK -tdh -hQg -nvD -eBd -eBd -fqa -fOy -xtS -fvH -uAv -fqa -anp -adK -aah -aah -aah -aah -abT -abT -abT -ahX -aey -aiP -aoK -apu -apu -apu -apu -apu -apu -apu -apu -aqb -ate -apu -bcd -apu -adr -avT -agb -agb -agc -agc -agi -agb -avU -aAE -aBO -aah -aah -aah -aah -aBO -aHc -aHv -aHv -aHv -aIh -aKn -aKV -aLC -aJI -aJI -aJI -aJI -aJI -aJI -aJI -aJI -aJI -aQy -aRF -aSn -aSF -aTl -aIh -aah -aah -aah -aah -aVn -aTZ -aEC -aVn -aXe -aXy -aXR -aYk -aTZ -aTZ -aTZ -aVn -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -baV -aoq -aoq -asS -"} -(70,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -iKy -iKy -iKy -iKy -iKy -iKy -iKy -iKy -fqa -fqa -fqa -fqa -fqa -fqa -anc -abT -abT -abT -abT -abT -abT -qor -qor -pyD -bbR -aez -aoL -apv -aqb -aqb -aqb -arw -ate -arX -apu -aqb -atf -apu -bcd -apu -adr -apu -agM -axg -axT -axT -azL -aAN -agM -aAF -aBO -aah -aah -aah -aah -aBO -aHc -aHv -aCj -aIL -aIh -aKo -aJI -aLC -aJI -aJI -aJI -aJI -aJI -aJI -aPv -aPV -aQu -aRa -aRG -aRY -aSG -aTm -aIh -aIh -aIh -aah -aah -aVn -aTZ -aWv -aVn -aFk -aTZ -aXS -aTZ -aTZ -aYk -aTZ -aVn -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -baV -aoq -aoq -asS -"} -(71,1,1) = {" -aaa -acN -aib -ajC -ajC -ajC -ajC -ajC -ajC -ajD -ajE -ajE -ajE -ajE -ajE -ajE -ajF -ajC -aaj -aib -aiT -ajG -ajG -ajG -ajG -ajH -ajI -ajI -ajI -akC -ajI -ajI -asH -ajI -asI -bbc -bbT -bbT -bbT -bbc -aup -sLi -ako -ahX -anQ -aeG -ahX -ahX -ahX -apu -apu -aqb -arM -arY -apu -aqb -atg -apu -bcd -apu -awB -bcd -agM -axh -axU -ayG -azM -aAO -agM -aAw -aBO -aah -aah -aah -aah -aBO -aBl -aeb -aCk -aCx -aJG -aKp -aKW -aLD -aJI -aJI -aJI -aJI -aJI -aJI -aPw -aPw -aPw -aRb -aRH -aRZ -aSH -aTn -aTN -aTN -aIh -aah -aah -aVn -aTZ -aED -aVn -aXe -aTZ -aHj -aYk -aTZ -aTZ -aTZ -aVn -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -baV -aoq -aoq -asS -"} -(72,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -abT -abT -abT -abT -abT -abT -abT -abT -abT -abT -abT -abT -abT -adt -adt -adt -adt -adt -abT -abT -abT -tCV -akt -ahX -aiS -aeH -aoM -apw -ahX -aqF -ari -aqb -aqb -arZ -asq -asK -apu -apu -apu -apu -avi -apu -agM -agM -axV -ayH -azN -agM -agM -aAw -aBO -aah -aah -aah -aah -aBO -aHf -aHv -aIf -aIN -aIh -aKq -aJI -aLC -acv -aMT -aMT -aMT -aMT -aMT -aPx -aPW -aPx -aRc -aRI -aSa -ajw -aRM -aPG -aTY -aIh -aah -aah -aVn -aTZ -aWx -aVn -aXg -aTZ -aHu -aYm -aYk -aTZ -aTZ -aVn -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -baV -aoq -aoq -asS -"} -(73,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adK -aah -aah -aah -aah -aah -aah -aah -abT -vCb -acS -acS -acS -adt -agd -bbs -bbC -qDR -eQz -eQz -abT -wzA -aku -ahX -anR -aeH -aoM -apw -ahX -aqF -ahX -apu -apu -apu -apu -asL -ath -axS -apu -bcz -azb -bcv -axS -agM -axW -ayI -azO -agM -aAo -aAE -aBO -aah -aah -aah -aah -aBO -aHf -aHv -aCl -aIO -aIh -aKq -aJI -aLC -aMm -aMU -aMv -aNY -aJI -aJI -aMU -aPX -aQv -aNa -aJI -aMm -aSI -aTo -aTO -aTO -aIh -aUT -aVn -aVn -aTZ -aEE -aVn -aVn -aXz -aVn -aVn -aVn -aVn -aVn -aVn -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aoq -aoq -asS -"} -(74,1,1) = {" -aaa -aaa -aaa -aaa -aab -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aad -adK -adK -aad -aad -aad -aaq -aaq -aaq -aaq -aah -aah -aah -aah -abT -abH -acX -acX -adL -adt -bbg -bbu -bbD -adt -eQz -eQz -abT -tCV -akt -ahX -anS -aeK -aoN -ahX -ahX -ahX -ahX -aah -aah -aah -apu -asL -apu -axS -apu -bcA -axS -apu -apu -agM -axX -ayG -azP -agM -aAp -aAK -aBO -aah -aah -aah -aah -aBO -aHf -aHv -aIh -aIh -aIh -aIh -aIh -aLC -aMm -aMV -aNE -aNZ -aNZ -aNZ -aNZ -aNE -aQw -aNa -aJI -aSb -aMV -aTp -aIh -aIh -aIh -aTZ -aTZ -aVI -aTZ -aTZ -aTZ -aXh -aTZ -aHx -aTZ -aTZ -aTZ -aZv -aVn -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aoq -aoq -asS -"} -(75,1,1) = {" -aac -aaf -aaf -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -akK -akK -aae -aaf -aai -aaq -aaz -aaM -aaq -aef -aef -aef -aef -abT -acQ -adl -ado -aco -adt -bbh -bbv -bbE -adt -eQz -eQz -abT -tCV -ahs -ahZ -aiV -aaQ -aeO -aoO -apy -aqG -ahX -aah -aah -aah -apu -asL -apu -axS -apu -bcC -axS -apu -bcd -agM -axY -ayG -azQ -agM -aAq -aAE -aBO -aah -aah -aah -aah -aBO -aHf -aHw -aIh -aIP -aJH -aKr -aKX -aLE -aMn -aMW -aNF -aOa -aOy -aOU -aOU -aNZ -aQx -aRd -aOB -aRH -aSJ -aTn -aTP -aTP -aIh -aTZ -aWy -aTZ -aTZ -aWy -aTZ -aXi -aTZ -aYm -aHy -aYF -aTZ -aZv -aVn -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baW -aaa -aaa -aaa -"} -(76,1,1) = {" -aqR -aaf -aaf -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaf -aak -aaq -aaA -aaA -aaq -erc -dxY -ads -aeg -aef -aef -aef -aef -ajc -adt -bbi -adt -bbF -adt -abT -abT -abT -tCV -ahs -ahX -anT -aeP -ahX -apx -aqc -aqH -ahX -aah -aah -aah -apu -asL -ati -apu -apu -apu -avO -agM -agM -agM -axZ -ayJ -azR -agM -aAr -aAE -aBO -aah -aah -aah -aah -aBO -aHf -aBH -aIh -aIQ -aJI -aJI -aKY -aLF -aMo -aMX -aNG -aOb -aOz -aOV -aPy -aNZ -aQy -aNa -aJI -aSc -ajx -aRM -aPG -aTY -aIh -aWy -aTZ -aVn -aVn -aVn -aVn -aVn -aVn -aVn -aVn -aYG -aVn -aVn -aVn -aYd -aYd -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -baV -aaa -"} -(77,1,1) = {" -aqR -aaf -aaf -aaf -aaf -aaf -aaf -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaf -aal -aas -aaB -aaN -hYh -abZ -acy -adv -aeh -aeN -afI -aBx -aCq -nDD -jPk -lpK -lDW -hPU -afC -lDW -afR -lDW -hQP -anv -aia -aiX -aeX -ahX -ahX -ahX -ahX -ahX -aah -aah -aah -apu -asL -atj -atL -atL -atL -atL -agM -ahc -ahu -aya -ayG -azS -aAP -aBO -aCA -aBO -aBO -aBO -aBO -aBO -aBO -aBm -aBI -aIh -aIR -aJJ -aKs -aKZ -aLG -aMp -aMq -aMq -aOc -aJI -aJI -aJI -aNZ -aQy -aNa -aJI -aMm -aSK -aTo -aTQ -aTQ -aIh -aTZ -aTZ -aVn -aVZ -aWz -aWQ -aXj -aXA -aXX -aYo -aHY -aXk -aZw -aWc -aUF -bas -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(78,1,1) = {" -aqR -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aae -aae -aae -aae -aae -aae -aae -aaf -aaf -aat -aaC -aaP -hpB -aca -acB -adx -aes -aeQ -afJ -aBy -aef -abT -abT -aeA -alX -amq -amM -cGJ -vHW -vHW -anp -abT -ahX -aiY -afa -ahX -aah -agM -agM -agM -aah -aah -aah -apu -asL -apu -agM -agM -atL -atL -agM -agM -agM -ayb -ayG -rYl -aAQ -aAt -aCB -aDj -aAT -aAT -aBf -aFM -aBj -aBr -aBK -aIh -aIS -aJK -aKt -aLa -aLH -aMp -aMY -aNH -aOd -aJI -aJI -aMU -aNZ -aQz -aNa -aJI -aSb -aMV -aTq -aIh -aIh -aIh -aTZ -aTZ -aVn -aWa -aWA -aWA -aWA -aGu -aXY -aXY -aYI -aIY -aXY -aLf -aUU -aYd -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(79,1,1) = {" -aqR -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aam -aaq -aAB -aAJ -aaq -aef -aef -aef -aef -aeS -afM -aBz -aef -acg -abT -aeB -afd -adp -tEo -ndH -agH -bbe -ahB -bcS -ahX -aiZ -afc -ahX -aah -agM -ahc -agM -aah -aah -aah -apu -asL -apu -ahc -agM -bcp -atL -atL -atL -atj -ayc -ayG -dCc -aAR -aBQ -aAL -aBQ -aBQ -aAU -aFl -aFN -ohi -ohi -loc -aec -aIT -aJL -aKu -aJI -aJI -aMq -aMZ -aNI -aJI -aJI -aJI -aPz -aNE -aQA -aMY -aOB -aRH -aSL -aTn -aTR -aTR -aIh -aUV -aTZ -aVn -abz -aWB -aWS -aWB -aXC -aWS -aWS -aWA -aXk -aJE -aLw -aZX -bas -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(80,1,1) = {" -aqR -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aAD -aAD -aAD -aAD -aAI -aAI -aAI -aef -aeZ -afN -aBA -aCr -aCr -aCr -aCr -aCr -aGa -aGa -aGa -aHV -aGa -aGa -aGa -agM -aja -afh -agM -agM -agM -aqI -agM -agM -agM -asa -agM -asM -agM -aqI -agM -agM -agM -agM -agM -agM -abc -sQB -byP -agM -aBO -aBO -aBO -aBO -aEz -aFl -aBO -aBO -aBO -aHC -aIh -aIU -aJM -aKv -aLb -aLI -aMr -aNa -aJI -aJI -aJI -aJI -aPA -aNZ -aQx -aNa -aJI -aSd -ajy -aRM -aPG -aTY -aIh -aTZ -aTZ -aVn -aWb -aWC -aWC -aWC -aGR -aYa -aYp -aWA -aXk -aWA -aWA -aYd -aYd -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(81,1,1) = {" -aqR -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aAD -aAI -aAI -aAI -aAI -aAI -aAI -aef -aeS -afO -aBB -aCr -aDa -aDU -aEj -aCr -aGb -aGK -aHr -aIq -aJU -aLt -aGa -anD -anU -afp -aoP -apz -aqd -aqJ -arf -arx -arN -aqd -asr -asN -atk -atM -aus -auN -avm -avV -jDg -wUW -abh -abk -osh -agM -aah -aah -aah -aBO -aEw -aFl -aBO -aah -aBO -aHC -aIh -aIV -aJN -aJI -aJI -aJI -aMs -aNa -aJI -aJI -aJI -aJI -aJI -aNZ -aQy -aNa -aJI -aMm -aSM -aTo -aTS -aTS -aIh -aTZ -aEx -aVn -aWc -aWc -aWc -aWA -aHd -aYb -aYb -aHZ -aHZ -aYb -aYb -aZY -aYd -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(82,1,1) = {" -aqR -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aAD -aAI -aAI -aAI -aAI -aAI -aAI -aef -aeS -afO -aBC -aCr -aDb -aDV -aEk -aCr -aGc -aGL -aHs -aIs -aKb -aLu -aGa -aic -anV -aoh -aoQ -aoQ -aoQ -aoQ -aoQ -aoQ -aoQ -asb -aoQ -aoQ -aoQ -aoQ -aoQ -aoQ -aoQ -aoQ -xAT -aoQ -tvk -abl -ghr -agM -aah -aah -aah -aBO -aAV -aFl -aBO -aah -aBO -aHC -aIh -aIW -aJM -aJI -aLc -aJI -aMt -aNb -aNJ -aOe -aOA -aOe -aPB -aNZ -aQy -aNa -aJI -aMm -aSN -aOf -aIh -aIh -aIh -aTZ -aEy -aVn -aWd -aWd -aWc -aXk -aXG -aWA -aXk -aXk -aIZ -aWA -aWA -aZZ -aYd -aYd -aYd -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(83,1,1) = {" -aqR -aaf -aaf -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaf -aag -aaf -aaf -aAD -aAI -aAI -aAI -aAI -aAI -aAI -aef -afi -afQ -bca -aCr -aDs -aDW -aEl -aFc -aGe -aGM -aHz -aIA -aKc -aLZ -baX -aid -goJ -aoi -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoi -awH -oQm -gVe -lNt -mon -agM -aah -aah -aah -aBO -aAY -aFl -aBO -aah -aBO -aHC -aIh -aIX -aJO -aKw -aLd -aLJ -aMr -aNc -aNK -aOf -aOf -aOf -aOf -aNZ -aQB -aRe -aRJ -aSe -aSO -aTr -aer -aTZ -aTZ -aTZ -aTZ -aVn -aWe -aWd -aWc -aWA -aXG -aXk -aWA -aWA -aWA -aWA -aXk -aWc -aWc -aWc -bas -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(84,1,1) = {" -aqR -aaf -aaf -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaf -aaf -aaf -aao -aao -aao -aao -aao -aao -aao -aao -aao -gJK -afO -aBE -aCr -aDt -aEd -aEo -aFd -aGf -aGN -aHA -aJj -aKd -aMe -aKd -aie -anW -aoj -aoR -apA -apA -apA -aoR -ary -ary -ary -ary -ary -aoR -apA -apA -apA -aoR -aoj -awH -axk -agM -aqM -agM -agM -agM -aah -aah -aBO -aEz -aFl -aBO -aah -aBO -aHD -aIh -aIh -aIh -aIh -aIh -aJI -aMs -aNc -aNE -aNZ -aNZ -aNZ -aNZ -aNE -aQC -aNa -aJI -aSb -aQy -aTs -aIh -aUa -aDR -aTZ -aTZ -aVn -aWd -aWd -aWT -aXl -aXH -aYc -aYq -aYL -aeI -aKg -aKg -baa -bat -aWB -bas -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(85,1,1) = {" -aaa -aaa -aaa -aaa -aab -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aau -aaF -aaS -abd -acd -acE -adC -aao -bcc -afS -aBF -aCL -aeC -aEf -aEG -aCr -aGg -aGN -aHF -aJk -aKe -aML -aGa -aif -anW -aoj -aoS -apB -aqe -aqe -aqe -aqe -aqe -aqe -aqe -aqe -aqe -aqe -aqe -auO -aoS -aoj -awH -axl -agM -ahc -agM -aAS -agM -aah -aah -aBO -aEz -aFn -aBO -aah -aBO -aBL -aBb -aCy -aIh -aKq -aJI -aJI -aMs -aNd -aNL -aOg -aOB -aOB -aPC -aPY -aOg -aRf -aRK -aMm -aQy -aJI -aIh -aUb -aUb -aUb -aUb -aUb -aUb -aUb -aUb -aXm -aXI -aYd -aYd -aYM -aYd -aYd -aLL -bab -bau -aWB -aYd -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(86,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aap -aav -aaG -aaX -abe -acf -acH -adD -aao -afj -age -aBB -aCr -aDt -aEg -aEU -aCr -aGh -aGO -aHK -aJl -aHK -aOS -aGa -bbm -anW -aoj -aoS -apC -aqf -aqK -aqf -aqf -aqf -aqf -aqf -aqf -aqf -aqK -aqf -arg -aoS -aoj -awH -axm -ayh -ayh -ayh -ayh -ayh -ayh -ayh -ayh -aAZ -aFl -aBO -aah -aBO -aBQ -aCp -aCz -aIh -aKq -aJI -aJI -aMs -aJI -aMq -aJI -aJI -aJI -aMq -aJI -aJI -aJI -aMq -aMm -aRF -aTt -aIh -aUc -aUG -aUW -aUW -aUW -aWf -aUc -aUb -aFm -aXJ -aYd -aYr -aYN -aZh -aYd -aZI -aWc -aWS -aWw -bas -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(87,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aap -aaw -aaH -aaY -abi -ach -acL -axa -aev -afk -agg -aBB -aCr -aDB -aEh -aDC -aCr -aGi -aGP -aHM -aJt -aKf -aQE -aGa -bbk -anW -aoj -aoS -apC -aqf -aqf -aqf -aqg -aqg -aqg -aqg -aqg -aqf -aqf -aqf -arg -aoS -aoj -awH -axm -ayh -ayQ -azZ -hmx -aBR -aCD -aDl -ayh -aBa -aFl -aBO -aah -aBO -aBO -aEz -aHD -aIh -aKx -aKx -aJI -aMu -aNe -aMr -aJI -aOC -aNe -aPD -aPZ -aPZ -aPZ -ajk -aSf -aSP -aTu -aIh -aUc -aUc -aUc -aUc -aUc -aUc -aUc -aUb -aXu -aHe -aYd -aYs -aYO -aZi -aYd -aWA -aVh -aWc -aWc -bas -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(88,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aap -aax -aaK -aaK -abo -aaK -aaK -adP -aao -cPX -afO -aBB -aCr -dYd -aEh -aDC -aCr -aGj -aGQ -aGj -aGj -aKG -aGj -aGj -aii -anW -aoj -aoS -apC -aqf -aqf -arg -arz -arz -asc -arz -arz -apC -aqf -aqf -arg -aoS -aoj -awH -axn -ayh -ayR -iwE -efV -aBS -aCE -aDm -aDS -aBb -aBg -aBO -aah -aah -aBO -aEz -aHC -aIh -aKy -aLe -aLP -aMv -aNf -aNM -ajj -aOD -aOW -aPE -aOW -aQD -aRg -aRL -ajr -aSQ -aMv -aIh -aUc -aUH -aUX -aUX -aUX -aWg -aUc -aUb -aXr -aXJ -aYd -aYd -aYd -aYd -aYd -aYd -aYd -aYd -aYd -aYd -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(89,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aay -aaL -aaZ -adb -acn -awy -adQ -aao -yaU -afO -aBB -aCr -aDC -aEh -aDt -aCr -aGk -aDA -aHQ -aJy -aKI -aRR -aGj -bbl -anX -aoj -aoS -apC -aqf -aqf -arg -arA -arz -aoR -arz -asO -apC -aqf -aqf -arg -aoS -aoj -awI -axo -ayh -ayS -iwE -nmD -aBT -aCF -aDn -ayh -aBc -aFl -aBO -aah -aah -aBO -aCu -aHC -aIh -aIh -aIh -aIh -aMw -aNg -aNN -aOh -aOE -aNg -aPF -aOh -aMw -aNg -aRM -aSg -aSR -aTv -aIh -aUd -aUI -aUb -aUb -aUb -aWh -aWD -aUb -aXr -aXJ -aYe -bad -aId -aZj -aZz -aNT -bad -bad -aWP -baR -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(90,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aao -aao -aao -aao -abY -aao -aao -aao -aao -yaU -afO -aBB -aCr -aDC -aEh -aEV -aFt -aGl -aGS -aHR -aJz -aKO -aTT -baY -bbm -anW -aoj -aoS -apC -aqf -aqf -arg -arz -arz -asd -arz -arz -apC -aqf -aqf -arg -aoS -aoj -awH -axp -ayh -ayT -iwE -cXW -aBT -aCG -aDo -ayh -aBd -aFl -aBO -aah -aah -aBO -aIk -aHC -aBO -aKz -aIa -aIh -aIh -aNh -aNO -aOi -aIh -aOX -aPG -aQa -aIh -aRh -aPG -aSh -aIh -aIh -aIh -aUe -aUG -aUW -aUW -aUW -aWf -aWE -aUb -aXt -aXM -aYf -aYu -aIe -aJa -aZA -aZK -aVl -bad -aWR -baR -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(91,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aeU -atc -awx -aeU -aAI -aAI -aef -yaU -afO -aBB -aCr -aDD -aEh -aDD -aCr -aGr -aGT -aHS -aJA -aKP -aVY -bba -afK -anW -aoj -aoS -apC -aqf -aqf -aqf -aqe -aqe -aqe -aqe -aqe -aqf -aqf -aqf -arg -aoS -aoj -awH -axq -ayh -ayU -gxa -qWk -ayh -ayh -ayh -ayh -aBe -aFl -aBO -aah -aah -aBO -aBO -aJb -aBO -aIa -aDk -aDI -aIh -aNh -aNP -aOi -aIh -aOX -aPH -aQa -aIh -aRh -aPH -aSh -aIh -aTw -aNE -aUe -aUc -aUc -aUc -aUc -aUc -aWE -aUb -aXr -aXP -aYe -aYe -aYR -aYe -aYe -aZL -aVm -aVW -baK -aYe -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(92,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aeU -atq -aww -aeU -aAI -aAI -aef -afl -agj -aBG -aCr -aDE -aEi -aEW -aCr -aGs -aGU -aHT -aJB -aKQ -aXQ -aGj -aCN -anW -aoj -aoS -apC -aqf -aqK -aqf -aqf -aqf -aqf -aqf -aqf -aqf -aqK -aqf -arg -aoS -aoj -awH -axm -ayi -ayV -fyp -huE -aBU -aCH -aDp -ayh -aBO -aFp -aBO -aGt -aGt -agM -aIl -aJc -agM -agM -aLg -ajl -ajl -ajl -ajl -anm -anm -anm -anm -ann -ann -ann -ann -anE -anE -anE -aSi -aUe -aUH -aUX -aUX -aUX -aWg -aWE -aUb -aXr -aXJ -aYe -aYv -aIg -aZl -aYe -aUE -aZz -aZz -aZz -baR -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(93,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -aan -aan -aan -aan -aan -atI -awz -aeU -aeU -aeU -aeU -aBD -afO -aBB -aCr -aCr -aCr -aCr -aCr -aGj -aGj -aGj -aGj -aGj -aGj -aGj -bbp -anW -aoj -aoS -apD -aqg -aqg -aqg -aqg -aqg -aqg -aqg -aqg -aqg -aqg -aqg -auP -aoS -aoj -awH -axm -ayh -ayW -eQT -niz -aBV -aCI -aDq -ayh -aCJ -aFq -aCJ -aBk -aCJ -agM -ayG -aJd -ayG -aKA -aLg -aLM -aMx -aLM -aLg -aOk -aOF -aOk -aOj -aQc -aQF -aQc -aQb -aSj -aSS -aSj -aSi -aUf -aUI -aUb -aUb -aUb -aWh -aWF -aUb -aFo -aXJ -aYe -aHB -aYT -aZm -aYe -aZN -aVo -aVX -bad -baR -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(94,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -aaV -aba -acO -adw -aan -atJ -awA -aeU -acZ -ade -aeU -jQL -amw -aBW -aCM -aDF -aCM -lUk -aCM -aCM -aCM -aCM -aJC -qWW -aZg -aef -bbq -anW -aoj -aoR -apA -apA -apA -aoR -ary -ary -ary -ary -ary -aoR -apA -apA -apA -aoR -aoj -awH -axm -ayh -ayh -aAf -cpp -ayh -ayh -ayh -ayh -aCJ -aFr -aCJ -aCJ -aCJ -agM -aeM -aJd -ayG -aKA -aLg -aLM -aLM -aLM -aLg -aOk -aOk -aOk -aOj -aQc -aQc -aQc -aQb -aSj -aSj -aSj -aSi -aUe -aUG -aUW -aUW -aUW -aWf -aWE -aUb -aXr -aXJ -aYe -aYe -aYe -aYe -aYe -aYe -aYe -aYe -aYe -aYe -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(95,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -abf -acl -acR -abP -aeY -atN -adX -adY -awY -adR -adU -afo -aem -afF -aBX -aDG -aBX -aBX -aFu -aGv -aBX -aBX -aJS -aKR -aKR -bbb -agf -anW -aoi -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoj -aoi -awH -axr -fAW -kKl -xzn -ldI -agM -aCJ -aCJ -aCJ -aCJ -aFs -aCJ -aCJ -aCJ -agM -ayG -aJe -aJP -aKB -aLg -aLM -aLM -aLM -aLg -aOk -aOk -aOk -aOj -aQc -aQc -aQc -aQb -aSj -aSj -aSj -aSi -aUg -aUJ -aUJ -aVq -aVJ -aVJ -aWG -aUb -aXr -aXJ -aYg -aYx -aIi -aJu -aZQ -aZO -bah -aWu -aXf -baS -baU -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(96,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -abj -acm -acU -adA -aan -aBn -lbu -axL -adc -adS -aeU -afs -aeD -aCg -mGH -aDH -mGH -aEX -aFv -aGw -aGV -aHU -aJT -tRA -igw -bbf -ago -anY -aok -aok -aok -aok -aok -aok -aok -aok -ase -aok -aok -aok -sEz -aut -aut -avn -avW -awJ -avW -kgk -mSz -qhq -oib -agM -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -agM -aIm -aJf -aJQ -aKC -aLg -aLM -aLM -aLM -aLg -aOk -aOk -aOk -aOj -aQc -aQc -aQc -aQb -aSj -aSj -aSj -aSi -aUc -aUc -aUc -aVr -aUc -aUc -aUc -aUb -aXt -aXO -aYh -aHE -aIj -aZo -aZC -aZC -aVp -aWu -aZQ -baS -baU -baU -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(97,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -aan -abp -abq -acY -adB -aan -atP -awE -aeU -aeU -aeU -aeU -aef -aef -afE -aef -aef -aef -aEY -aFO -aGw -aHh -aef -aef -aef -aef -aef -bbt -anZ -aol -aoT -apE -aqh -aqL -doa -aqL -ajA -asf -ass -mGP -atn -cHW -auu -auQ -avo -avX -awK -aqh -vfy -qwm -ayG -qRI -agM -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -agM -aIn -aJg -aJR -aKD -aLg -aLM -aLM -aLM -aLg -aOk -aOk -aOk -aOj -aQc -aQc -aQc -aQb -aSj -aSj -aSj -aSi -aUb -aUb -aUb -aVs -aUb -aUb -aUb -aUb -aXu -aXJ -aYg -aYg -aIE -aYg -aYg -aZP -baj -baA -baM -aYg -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(98,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -aaD -abq -acq -acY -adE -aan -uHS -awF -axM -aeU -aah -aah -aah -aah -akA -aAG -aah -aef -aEZ -aFP -aGw -aHi -aef -aah -aah -aah -agM -agM -aoa -agM -agM -agM -agM -aqM -agM -aqM -agM -asg -ash -uxF -ash -kMG -ash -auR -avp -auR -awL -abx -awN -bPt -oVr -mrR -agM -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -agM -aIo -aJf -aJQ -aKE -aLg -aLM -aLM -aLM -aLg -aOk -aOk -aOk -aOj -aQc -aQc -aQc -aQb -aSj -aSj -aSj -aSi -aUh -aUK -aUY -aVt -aVK -aWi -aWH -aUb -aXv -aXJ -aYg -aYz -aIF -aZp -aYg -aZQ -bah -bah -aXn -baS -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(99,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adK -aad -aad -aar -aaE -abr -abr -adf -adT -afb -atO -awC -axN -aeU -aah -aah -aah -aah -akA -aAG -aah -aef -aFa -aFQ -aGw -aHk -aef -aah -aah -aah -ahx -anI -aob -aom -ahx -guV -apF -ahc -apF -nKz -apF -ash -ast -asU -ato -evF -ast -auR -avq -anH -awM -axs -awN -azd -ayG -jnj -agM -cOq -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aBs -agM -aEH -aJh -aJQ -aKF -aLg -aLN -aMy -aNi -aLg -aOl -aOG -aOY -aOj -aQd -aQG -aRi -aQb -aSk -aST -aTx -aSi -aUi -aUL -aUZ -aVu -aVL -aWj -aWI -aUb -aXr -aXJ -aYg -aHO -aYY -aZq -aYg -aZQ -bal -baB -bah -baS -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(100,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -abL -abL -abL -abL -aea -afb -atO -awC -axO -aeU -aah -aah -aah -aah -anF -aAG -aah -aef -aFb -aFZ -aGJ -aHq -aef -aah -aah -aah -ahx -ait -aoc -aon -aoU -apG -apF -aqN -apF -aqN -apF -ash -ast -asU -atp -hoH -ast -auR -avr -avZ -awN -axt -awN -azc -ayG -uEK -agM -agM -agM -aDT -aEF -agM -agM -agM -agM -agM -aIp -aJi -agM -agM -aLg -aLO -aMz -aNj -aLg -aOm -aOH -aOZ -aOj -aQe -aQH -aRj -aQb -aSl -aSU -aTy -aSi -aUj -aUM -aVa -aVx -aVM -aWk -aWJ -aUb -aXr -aXJ -aYg -aYg -aYg -aYg -aYg -aYg -aYg -aYg -aYg -aYg -baU -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(101,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aaJ -abU -acC -abL -aei -afb -atO -awG -aed -aeU -aah -aah -aah -aah -akA -aAG -aah -aef -aef -aef -aef -aef -aef -aah -aah -aah -ahx -anJ -aod -aoo -ahx -aaW -aqi -aqO -mRY -aql -aql -ash -asu -asU -qOA -uuu -ast -auR -avs -awa -awN -axt -awN -azd -ayJ -mZO -agM -kbZ -cqZ -xzn -lQQ -vHP -bMP -eUS -axi -mCe -xzn -abb -rxq -aMc -aLg -aLg -aLg -aNk -aLg -aOj -aOj -aPa -aOj -aQb -aQb -aRk -aQb -aSi -aSi -aTz -aSi -aUb -aUb -aUb -aVw -aUb -aUb -aUb -aUb -aXr -aXP -aYi -aYB -aIH -aJw -aZD -aZR -baD -baD -baO -baT -baU -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(102,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aar -aaO -abV -acF -abL -aek -afb -atO -awz -aeU -aeU -axP -axP -axP -axP -akA -aAI -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -ahx -ahx -ahx -ahx -ahx -apF -apF -aqP -apF -apF -apF -ash -asv -asU -atr -atR -auv -auR -avt -awb -awN -abA -auR -aze -ayG -oKY -qKn -sHO -uKS -ayG -ayG -ayG -ayG -ayG -ayG -ayG -ayG -aJg -nsp -aKH -aLh -aNQ -aMA -aNl -aOT -aOn -aOI -aPb -aPI -aQf -aQI -aRl -aRN -aSm -aOI -aTA -aTU -aUk -aUN -aVb -aWW -aVN -aWl -aWK -aWU -aXw -aXO -aYj -aHW -aII -aJx -aKS -aKS -aVG -aZD -baP -baT -baU -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(103,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -aaR -abL -abL -abL -ael -aan -atQ -awV -axQ -adZ -ayB -ayZ -aAc -aAi -asT -aAI -adK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -apF -aqP -apF -arL -arO -asi -asw -asw -ats -atS -auw -auR -avu -awc -awN -axt -aym -azf -ayG -byn -uUP -tVd -eow -kAG -rZZ -ghg -wxa -glc -glc -glc -hTz -rVb -kPT -bbn -aLi -aLQ -aMB -aNm -aNR -aOo -aOJ -aPc -aPJ -aQg -aQJ -aNm -aRO -aVv -aOJ -aNm -aTV -aUl -aUO -aVc -aVy -aVO -aWm -aWL -aVn -aXP -aXP -aYi -aYi -aZb -aYi -aYi -aZS -bao -baC -baQ -aYi -baU -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(104,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adK -aad -aad -aan -aan -abX -acG -abX -aan -aan -acP -awW -axR -aee -ayC -aza -aAd -axP -aAz -aAI -adK -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -apF -aqQ -arl -ark -apF -ash -asx -asU -atp -atT -aux -auR -avv -awd -auR -awN -auR -azg -cWS -rRC -agM -aCO -aCO -aCO -aEI -aFw -aCO -aCO -aCO -aHG -aHG -aHG -aHG -aCO -aLj -aLj -aLj -aNn -aNS -aNS -aNS -aPd -aPK -aPK -aPK -aRm -aPK -aSo -aSo -aqS -aSo -aUm -aUm -aUq -aUr -xnn -aWn -aWn -aVn -aVn -aVn -aYi -aHX -aZc -aJD -aYi -aZD -aZD -baD -aZD -baT -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(105,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -acc -acI -adm -aan -aff -aff -awX -aff -aff -ayC -azE -axP -axP -axK -aAI -adK -aah -aah -aah -aah -aah -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aah -aah -aah -apF -aqP -arl -apF -apF -ash -ast -asU -att -atU -auy -auR -avw -awe -awO -axu -auR -azh -ayG -vDb -aBY -aCP -aDu -aDX -aEJ -aFx -sya -aGx -aHl -aDu -aDu -aDu -aDu -aCS -aLj -aLR -aMC -aNo -aNS -aOp -aOK -aPe -aPK -aQh -aQK -aRn -aPK -aSp -aSV -aTC -aSo -aUn -aUp -aVd -aVz -aUt -aWo -aWM -aWV -aVn -aHg -aYi -aYE -aIM -aZu -aYi -aZU -aVH -baE -baD -baT -baU -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(106,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -ace -acK -adq -aan -aff -auq -ady -ayd -aff -ayY -azF -axP -aeF -axK -aAI -adK -aah -aah -aah -aah -aah -aaU -agQ -ahp -ahC -akI -anf -aaU -aah -aah -aah -apF -abQ -arj -apF -aah -ash -ast -asU -atu -asU -ast -auR -avx -awf -awf -axv -auR -azi -ayG -vDb -aBY -aCQ -aDu -aDu -aDu -aFy -aFR -aFR -aFR -aFR -aIr -aJm -aJV -aDu -aLj -aLS -aMD -aNp -aNS -aOq -aOL -aPf -aPK -aQi -aQL -aRo -aPK -aSq -aSW -aTD -aSo -acw -aVS -aVe -aVA -aVQ -bHR -aUP -bcT -aVn -anK -aYi -aYi -aYi -aYi -aYi -aYi -aYi -aYi -aYi -aYi -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(107,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aan -aan -aan -aan -aan -aff -aur -awZ -aye -aff -axP -axP -axP -aeJ -aAz -aAI -adK -aah -aah -aah -aah -aah -aaU -agS -ahq -ajP -akY -anq -aaU -aaU -aaU -aaU -aaU -abR -ark -apF -aah -ash -ast -asU -atv -asU -ast -auR -avy -awg -awP -axw -auR -azj -ayI -svZ -aBY -aCR -aDv -aDu -aEK -aFz -aEK -aEK -aEK -aDu -atm -aCQ -aJV -aDu -aLj -aLT -aME -aNq -aNS -aOr -aOM -aPg -aPK -aQj -aQM -aRp -aPK -aSr -aSX -aTE -aSo -acz -bcT -aVf -aVB -aVf -cwS -aUP -aWX -aUm -bcD -bcI -bcK -aUm -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(108,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aff -auo -adG -ayf -aff -aAI -aAI -aAD -afy -azT -aAa -adK -aah -aah -bbj -bbj -bbj -bbj -agT -ahr -ajR -alu -anr -abJ -abM -abJ -abJ -abO -abS -arC -apF -aah -ash -asy -asV -atw -atV -auz -auR -avz -awh -awQ -axx -auR -azk -ayG -tNJ -agM -aCS -aCO -aDY -aEL -aFA -aEL -aEL -aEL -aDu -aIt -aJn -aJV -aDu -aLj -aLU -aMF -aNr -aNS -aOs -aON -aPh -aPK -aQk -aQN -aRq -aPK -aSs -aSY -aTF -aSo -afZ -bcT -aVf -aVB -aVf -cwS -aUP -aWY -aUm -bcE -aUP -bcL -aUm -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(109,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aeE -afm -afm -axb -afm -afm -aeE -aeE -azV -azV -azV -aAb -adK -aah -bbj -bbj -bbI -bbM -bbj -ahg -ahz -ajZ -alD -anL -aaU -aaU -aaU -aaU -aaU -aql -arl -apF -aah -ash -ash -ash -ash -ash -ash -auR -auR -auR -auR -auR -ayn -azd -ayG -vDb -aAR -agM -aCO -aDZ -aEM -aFB -aFS -aEM -aHm -aDu -aIu -aJo -aDu -aKJ -aLj -aLV -aME -aNs -aNS -aOt -aOM -aPi -aPK -aQl -aQM -aRr -aPK -aSt -aSX -aTG -aSo -arm -bcT -aVf -aUs -aUu -iee -aVP -aWZ -bcj -bcF -aUP -bcM -aUm -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(110,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aeE -afn -avk -axc -ayg -ayE -azu -azH -azW -aAe -aeE -aAz -adK -aah -bbj -bbx -bbJ -bbV -bbj -ahk -ahA -ahk -ahA -aop -aaU -aah -aah -aah -apF -aql -arl -apF -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -agM -azl -iti -vDb -aBZ -agM -aCO -aEa -aEM -aFC -aFT -aGy -aHn -aDu -aIv -aDu -aCP -aDu -aLj -aLj -aMG -aLj -aNS -aNS -aOO -aNS -aPK -aPK -aQO -aPK -aPK -aSo -aSZ -aSo -aSo -arD -bcT -aVf -aVB -aVf -cwS -aUP -aXa -aUm -bcG -aUP -bcL -aUm -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(111,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aeE -afx -avl -axd -ayj -ayF -azy -azI -azX -aAg -aeE -aAz -adK -aah -bbj -bby -bbK -bbW -bbj -aaU -aaU -aaU -aaU -aBo -aaU -aah -aah -aah -apF -aql -arl -apF -aah -aah -aah -aah -atx -atx -atx -atx -atx -atx -atx -atx -atx -azm -mRF -bMs -atx -atx -aCO -aCO -acr -aFD -aFD -aFD -aCO -aeL -aIw -aDu -aCQ -aDu -aLj -aLW -aMH -aNt -aNS -aOu -aOP -aPj -aPK -aQm -aQP -aRs -aPK -aSu -aTa -aTH -aSo -aTB -bcm -aVg -aVC -aVR -laR -aWp -aXb -aUm -bcH -bcJ -bcN -aUm -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(112,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aeE -afB -avQ -axj -ayk -ayK -azv -azH -azY -aAh -aeE -aAz -adK -aAW -bbr -bbz -bbL -bbY -bbj -aAG -aAG -aAG -aAG -aBp -aAD -aah -aah -apF -apF -aql -nlo -apF -aah -aah -aah -aah -atx -atW -auA -auS -avA -atW -atx -axy -ayo -azn -bSx -raS -aCa -axy -atx -aEb -auB -aFE -aFU -aLK -act -aDu -aIx -aDu -aCR -aKK -aLj -aLX -aMI -aNu -aNS -aOv -aOQ -aPk -aPK -aQn -aQQ -aRt -aPK -aSv -aTb -aTI -aSo -aUo -aUQ -bHR -aUP -aVS -aga -aWN -aXc -aUm -aUm -aUm -aUm -aUm -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(113,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aeE -afD -avl -axF -ayl -avl -azw -aeE -aeE -aeE -aeE -aAA -aAH -aAX -bbj -bbA -bbj -bbj -bbj -aAG -aAG -aAG -aAI -aBp -aAD -aah -aah -apF -lry -aql -aql -apF -aah -aah -aah -aah -atx -afG -auB -auB -auB -aex -atx -axy -ayo -azn -auU -tLx -aCa -axy -atx -afY -auB -aFF -aFV -aGz -aCO -aHH -aIu -aDu -aDu -aDu -aLj -aLj -aLj -aLj -aNS -aNS -aNS -aNS -aPK -aPK -aPK -aPK -aPK -aSo -aSo -aSo -aSo -aUm -aUm -aVi -aVD -aVT -aUm -aUm -aUm -aUm -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(114,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aeE -afL -avR -axG -ayt -avl -azx -azH -azW -aAe -aeE -aAI -aAI -aAI -aAI -aBh -aBi -aBi -bHK -aBi -aBi -aBi -aBi -aBq -aAD -aah -aah -apF -aqk -aqj -aql -apF -aah -aah -aah -aah -atx -atX -auB -auT -avB -awi -atx -atx -atx -azo -qfJ -mOz -atx -atx -atx -aEc -aEN -aFG -aFV -aGA -aCO -aHI -aIy -aJp -aJW -aJW -aLk -aCP -aCO -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aUm -aVj -aVj -aVj -aUm -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(115,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aeE -agq -avS -axH -ayu -ayL -azz -azJ -azX -aAg -aeE -aAI -aAI -gYx -pdo -aAI -aAI -aAI -aAI -aAI -aAI -aAI -aAI -bbZ -aAD -aah -aah -apF -aql -aql -aql -apF -aah -aah -aah -aah -atx -atY -auB -auU -avC -auB -awR -axz -ayp -azp -mRF -rYL -ayp -aCT -aDw -auB -aEO -auU -aFW -auB -aCO -aCS -aIz -aJq -aJV -aDu -aLl -aJn -aCO -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(116,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ack -acM -acM -aen -aig -auL -xpP -ayv -ayM -bcf -azH -azY -aAh -aeE -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aAD -aah -aah -apF -apF -apF -apF -apF -aah -aah -aah -aah -atx -atZ -auC -auV -avD -awj -awj -awj -ayq -azq -jva -dZW -aCb -aCU -aCU -aCU -aEP -aFH -aFX -aGB -aCO -aHJ -aHJ -aHJ -aHJ -aHJ -aHJ -aHJ -aCO -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(117,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aeE -aeE -aeE -azH -ayw -aeE -aeE -aeE -aeE -aeE -aeE -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -atx -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -auB -aGC -atx -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(118,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -naC -ajb -awu -lMK -ayx -ayN -azA -naC -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aah -aah -aad -aad -aah -aah -aah -aah -aah -aah -aah -aty -atx -atx -atx -atx -aty -afH -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aub -aty -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(119,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -naC -amc -arB -arB -ayy -ayO -azB -naC -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -auD -auc -auc -atz -auc -auc -atA -atA -atA -atA -atA -auc -auc -auc -atA -auc -atA -auc -auc -auc -atA -atA -atA -atA -atA -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(120,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -naC -amP -awv -awv -ayz -ayP -azC -naC -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -auD -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(121,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ajK -aad -aad -aad -aah -naC -aAC -avY -axJ -ayA -ayX -azD -naC -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -auD -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -wXW -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(122,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -naC -naC -naC -naC -naC -naC -naC -naC -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -auD -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(123,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aah -aah -aah -aah -aah -aah -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -auD -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(124,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -auD -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(125,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -auD -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(126,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -auD -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(127,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -auD -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(128,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -auD -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(129,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -auD -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(130,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -auD -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -atB -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(131,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -auD -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -aud -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bcV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(132,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -auD -atC -atC -aua -atC -atC -atC -aua -atC -atC -aue -aua -atC -atC -aua -atC -atC -atC -aua -atC -aue -atC -aua -atC -atC -auD -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(133,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aty -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -atx -aty -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(134,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(135,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(136,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(137,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(138,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(139,1,1) = {" -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -"} -(140,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/unsimulated/wall/planetary/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aab" = ( +/obj/structure/sign/warning/bomb_range{ + name = "\improper MINING AREA - WATCH FOR BLASTING" + }, +/turf/unsimulated/wall/planetary/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aac" = ( +/obj/effect/map_effect/portal/master/side_a{ + portal_id = "surfacemine" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aad" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aae" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aaf" = ( +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aag" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aah" = ( +/turf/simulated/mineral, +/area/tether/surfacebase/outside/outside1) +"aai" = ( +/obj/machinery/camera/network/outside{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aaj" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aak" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aal" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aam" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aan" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/mentalhealth) +"aao" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/paramed) +"aap" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/paramed) +"aaq" = ( +/turf/simulated/wall, +/area/tether/surfacebase/lowernortheva) +"aar" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "psych_office" + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/mentalhealth) +"aas" = ( +/obj/effect/map_helper/airlock/door/ext_door, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "northciv_airlock_outer"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/lowernortheva) +"aat" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "northciv_airlock"; + pixel_x = 25; + pixel_y = 8 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "northciv_airlock_outer"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/lowernortheva) +"aau" = ( +/obj/machinery/suit_cycler/medical, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aav" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aax" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aay" = ( +/obj/structure/table/rack, +/obj/item/device/gps/medical{ + pixel_y = 3 + }, +/obj/item/device/gps/medical{ + pixel_x = -3 + }, +/obj/item/device/radio{ + pixel_x = 2 + }, +/obj/item/device/radio{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaz" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "northciv_airlock_scrubber" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/lowernortheva) +"aaA" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "northciv_airlock_pump" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/lowernortheva) +"aaB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernortheva) +"aaC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernortheva) +"aaD" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"aaE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"aaF" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/medical/emt, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/medical/emt, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaG" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/white, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"aaK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaL" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaM" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "northciv_airlock_scrubber" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/lowernortheva) +"aaN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernortheva) +"aaO" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"aaP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/embedded_controller/radio/airlock/phoron{ + id_tag = "northciv_airlock"; + pixel_x = 25; + pixel_y = -25 + }, +/obj/machinery/airlock_sensor/phoron{ + id_tag = "northciv_airlock_sensor"; + pixel_x = 59; + pixel_y = 11 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernortheva) +"aaQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aaR" = ( +/obj/structure/filingcabinet/medical{ + desc = "A large cabinet with hard copy medical records."; + name = "Medical Records" + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"aaS" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/medical/emt, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/medical/emt, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aaU" = ( +/turf/simulated/wall, +/area/maintenance/lower/trash_pit) +"aaV" = ( +/obj/structure/table/woodentable, +/obj/structure/plushie/ian{ + dir = 8; + pixel_y = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"aaW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/vacant_site) +"aaX" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaY" = ( +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aaZ" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aba" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"abc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"abd" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/medical/equipped, +/obj/structure/fireaxecabinet{ + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"abe" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"abf" = ( +/obj/structure/table/woodentable, +/obj/item/toy/plushie/therapy/blue, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"abh" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"abi" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"abj" = ( +/obj/structure/table/woodentable, +/obj/random/plushie, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"abl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"abm" = ( +/turf/simulated/wall, +/area/rnd/hardstorage) +"abn" = ( +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"abo" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"abp" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abq" = ( +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abs" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"abt" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"abu" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"abv" = ( +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"abw" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"abx" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled{ + icon_state = "monotile" + }, +/area/security/checkpoint) +"aby" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"abz" = ( +/obj/structure/table/woodentable, +/obj/machinery/light_construct{ + dir = 1 + }, +/obj/item/glass_jar, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"abA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/security/checkpoint) +"abB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"abC" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet/crate, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/drinkbottle, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"abD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"abE" = ( +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"abF" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"abG" = ( +/obj/effect/floor_decal/rust, +/obj/random/cutout, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"abH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"abI" = ( +/obj/structure/closet/crate/plastic, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"abJ" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abK" = ( +/obj/machinery/door/airlock/glass{ + name = "Looking Glass" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_one) +"abL" = ( +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"abM" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abN" = ( +/turf/simulated/wall/r_wall, +/area/rnd/testingroom) +"abO" = ( +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"abP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"abQ" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"abR" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"abS" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"abT" = ( +/turf/simulated/wall, +/area/maintenance/lower/mining_eva) +"abU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_y = 4 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"abV" = ( +/obj/effect/landmark/start{ + name = "Psychiatrist" + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"abW" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + name = "Research Testing Scrubber"; + use_power = 2 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"abX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "psych_birdcage" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/mentalhealth) +"abY" = ( +/obj/machinery/door/airlock/medical{ + name = "EMT Bay" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/paramed) +"abZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aca" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"acb" = ( +/turf/simulated/mineral, +/area/rnd/testingroom) +"acc" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/grass, +/area/tether/surfacebase/medical/mentalhealth) +"acd" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit{ + pixel_y = -5 + }, +/obj/item/device/suit_cooling_unit{ + pixel_y = -5 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"ace" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/grass, +/area/tether/surfacebase/medical/mentalhealth) +"acf" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"acg" = ( +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ach" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aci" = ( +/turf/simulated/mineral, +/area/storage/surface_eva/external) +"acj" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"ack" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + use_power = 1 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"acl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acn" = ( +/obj/structure/table/rack, +/obj/item/device/defib_kit/compact/loaded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aco" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"acp" = ( +/obj/structure/grille, +/obj/structure/railing, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "suckysucky"; + name = "Scrubber Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"acq" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acr" = ( +/obj/structure/table/marble, +/obj/machinery/door/window{ + dir = 8; + req_one_access = list(25) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"acs" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/medical/first_aid_west) +"act" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Tram Maintenance Access" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"acu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"acv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"acw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"acx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"acy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"acz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/loadout, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"acB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/vending/wallmed_airlock{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"acC" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/machinery/button/windowtint{ + id = "psych_office"; + pixel_x = 6; + pixel_y = 10; + range = 12 + }, +/obj/machinery/button/windowtint{ + id = "psych_office_inside"; + pixel_x = 6; + range = 12 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"acD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"acE" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"acF" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/med_data/laptop{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"acG" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Birdcage"; + req_one_access = list(64) + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"acH" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"acI" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/grass, +/area/tether/surfacebase/medical/mentalhealth) +"acJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"acK" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/tether/surfacebase/medical/mentalhealth) +"acL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"acM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"acN" = ( +/obj/structure/cable/ender{ + icon_state = "1-2"; + id = "surface-mining" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"acO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acP" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/medbay, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"acQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"acR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acS" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"acT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"acU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"acW" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"acX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"acY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"acZ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"ada" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adb" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/paramed) +"adc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"add" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ade" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"adf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"adh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adl" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"adm" = ( +/obj/structure/bed/chair/bay/chair/padded/red/bignest{ + name = "Tweeter's Bed" + }, +/mob/living/simple_mob/animal/passive/bird/azure_tit/tweeter, +/turf/simulated/floor/grass, +/area/tether/surfacebase/medical/mentalhealth) +"adn" = ( +/turf/simulated/wall/r_wall, +/area/rnd/tankstorage) +"ado" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"adp" = ( +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"adq" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/tether/surfacebase/medical/mentalhealth) +"adr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"ads" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/lowernorthhall) +"adt" = ( +/turf/simulated/wall, +/area/maintenance/substation/cargostoresubstation) +"adu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"adw" = ( +/obj/structure/flora/pottedplant/fern, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"adx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"ady" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 8; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = 25; + req_access = list(39) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"adz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"adA" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -8; + pixel_y = -26 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"adB" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/anomaly_spectroscopy, +/obj/item/weapon/book/manual/anomaly_testing, +/obj/item/weapon/book/manual/materials_chemistry_analysis, +/obj/item/weapon/book/manual/resleeving, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"adC" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"adD" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"adE" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/standard_operating_procedure, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"adF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 8; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 24; + pixel_y = 25; + req_access = list(39) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"adH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adK" = ( +/turf/simulated/wall, +/area/tether/surfacebase/outside/outside1) +"adL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"adM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"adN" = ( +/obj/machinery/power/apc/high{ + dir = 4; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"adO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adP" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"adQ" = ( +/obj/structure/closet/secure_closet/paramedic, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"adR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"adS" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"adT" = ( +/obj/structure/flora/pottedplant/fern, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tether/surfacebase/medical/mentalhealth) +"adU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + name = "Mental Health"; + req_one_access = list() + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"adV" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"adW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"adX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay recovery room door."; + id = "Psych"; + name = "Exit Button"; + pixel_x = -26; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"adY" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "Psych"; + name = "Mental Health" + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"adZ" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"aea" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access = list(64); + req_one_access = list(5) + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"aeb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Atmospherics Substation" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + layer = 1; + name = "Atmospherics Lockdown"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aec" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Atmospherics"; + req_access = list(24) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + layer = 1; + name = "Atmospherics Lockdown"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aed" = ( +/obj/machinery/vending/medical{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"aee" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"aef" = ( +/turf/simulated/wall, +/area/tether/surfacebase/lowernorthhall) +"aeg" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/lowernorthhall) +"aeh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aei" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"aej" = ( +/obj/machinery/door/airlock/maintenance/engi{ + name = "Atmospherics"; + req_access = list(24) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + layer = 1; + name = "Atmospherics Lockdown"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aek" = ( +/obj/structure/bed/psych, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"ael" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/clipboard, +/obj/machinery/light, +/turf/simulated/floor/carpet/blue, +/area/tether/surfacebase/medical/mentalhealth) +"aem" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aen" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/wall/r_wall, +/area/medical/virology) +"aeo" = ( +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aep" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aeq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aer" = ( +/obj/machinery/door/airlock/maintenance/engi{ + name = "Atmospherics"; + req_access = list(24) + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + layer = 1; + name = "Atmospherics Lockdown"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aes" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/camera/network/cargo{ + dir = 8 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aet" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aeu" = ( +/obj/machinery/door/airlock/maintenance/engi{ + name = "Atmospherics"; + req_access = list(24) + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "atmoslockdown"; + layer = 1; + name = "Atmospherics Lockdown"; + opacity = 0; + open_layer = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aev" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + name = "EMT Bay" + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"aew" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aex" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?"; + icon_state = "frame"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aey" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/tether/surfacebase/north_stairs_one) +"aez" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"aeB" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/tool, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"aeC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aeD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aeE" = ( +/turf/simulated/wall/r_wall, +/area/medical/virology) +"aeF" = ( +/obj/random/junk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aeG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeH" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like its set to the kek-centeral. I wonder what else is on?"; + icon_state = "frame"; + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aeJ" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 8 + }, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aeK" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeL" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like it's on MTV. Now you can't blame that demi-cowgirl for working her money maker. I wonder what else is on?"; + icon_state = "frame"; + pixel_y = 32 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aeM" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like it's on the fishing channel. I wonder what else is on?"; + icon_state = "frame"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aeN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aeO" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Secondary Janitorial Closet"; + req_access = list(26) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeQ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aeR" = ( +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"aeS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aeT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"aeU" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/lowerhall) +"aeV" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aeW" = ( +/turf/simulated/wall, +/area/storage/primary) +"aeX" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aeY" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "mentaldoor"; + name = "Mental Health"; + req_access = list(64) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/mentalhealth) +"aeZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"afb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "psych_office_inside" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/mentalhealth) +"afc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"afd" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"afe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"aff" = ( +/turf/simulated/wall, +/area/medical/virologyaccess) +"afg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"afh" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "West Hallway" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor, +/area/tether/surfacebase/surface_one_hall) +"afi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afm" = ( +/turf/simulated/wall/r_wall, +/area/medical/virologyaccess) +"afn" = ( +/obj/machinery/disease2/diseaseanalyser, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"afo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"afq" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"afr" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/storage/primary) +"afs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aft" = ( +/obj/machinery/camera/network/civilian, +/obj/machinery/lapvend, +/turf/simulated/floor/tiled, +/area/storage/primary) +"afu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"afv" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/storage/primary) +"afw" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/alarm{ + pixel_y = 23 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"afx" = ( +/obj/machinery/computer/diseasesplicer, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"afy" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"afz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"afA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"afB" = ( +/obj/machinery/disease2/incubator, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"afC" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"afD" = ( +/obj/machinery/computer/centrifuge, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"afE" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/tether/surfacebase/lowernorthhall) +"afF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afG" = ( +/obj/structure/bed/chair, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"afH" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/tram) +"afI" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"afL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"afM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"afQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afR" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"afS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"afT" = ( +/turf/simulated/floor/tiled, +/area/storage/primary) +"afU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"afV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/storage/primary) +"afW" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/storage/primary) +"afX" = ( +/obj/machinery/door/airlock/maintenance/rnd{ + name = "Research Maintenance Access"; + req_access = list(55) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/hardstorage) +"afY" = ( +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"afZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/loadout/overwear, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aga" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/obj/machinery/vending/coffee{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"agb" = ( +/turf/simulated/shuttle/wall/voidcraft/green{ + hard_corner = 1 + }, +/area/tether/elevator) +"agc" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/tether/elevator) +"agd" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "CargoShop Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"age" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"agf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"agg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"agh" = ( +/obj/turbolift_map_holder/tether{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/tether/elevator) +"agi" = ( +/obj/structure/sign/deck/first, +/turf/simulated/shuttle/wall/voidcraft/green{ + hard_corner = 1 + }, +/area/tether/elevator) +"agj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"agk" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"agl" = ( +/obj/machinery/atmospherics/unary/outlet_injector, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"agm" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"agn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"ago" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"agp" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/suspension_gen, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"agq" = ( +/obj/machinery/atmospherics/tvalve/bypass{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"agr" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"ags" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/obj/item/weapon/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"agt" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"agu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agv" = ( +/turf/simulated/wall/r_wall, +/area/rnd/chemistry_lab) +"agw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"agx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"agy" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"agz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agA" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agB" = ( +/obj/machinery/vending/tool{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Xenoarch Storage"; + req_access = list(65) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenoarch_storage) +"agD" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"agE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Research Hard Storage"; + req_access = list(47) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hardstorage) +"agF" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"agG" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"agH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"agI" = ( +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/structure/reagent_dispensers/foam, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agK" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agL" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"agM" = ( +/turf/simulated/wall, +/area/tether/surfacebase/surface_one_hall) +"agN" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"agO" = ( +/obj/structure/table/glass, +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"agP" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gogogo"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"agQ" = ( +/obj/structure/catwalk, +/obj/random/cigarettes, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"agR" = ( +/obj/structure/table/glass, +/obj/item/weapon/tool/screwdriver, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"agS" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"agT" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"agU" = ( +/turf/simulated/wall, +/area/storage/surface_eva) +"agV" = ( +/obj/structure/closet/crate, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"agW" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"agX" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agY" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/storage/primary) +"agZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aha" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gogogo"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahb" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gogogo"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahc" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "atrium" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_one_hall) +"ahd" = ( +/obj/machinery/door/window/northleft{ + req_access = list(47) + }, +/obj/machinery/door/window/southleft{ + req_access = list(47) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gogogo"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahe" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "gogogo"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahg" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahi" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/random/maintenance/clean, +/obj/item/clothing/mask/gas, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"ahj" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"ahk" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahl" = ( +/turf/simulated/wall, +/area/hallway/lower/first_west) +"ahm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/storage/primary) +"aho" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/primary) +"ahp" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/obj/random/tool, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahq" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahr" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahs" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"aht" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Chemical Research" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahu" = ( +/obj/structure/grille, +/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_one_hall) +"ahv" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahw" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahx" = ( +/turf/simulated/wall, +/area/tether/surfacebase/emergency_storage/atrium) +"ahy" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahA" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ahC" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ahD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"ahE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"ahF" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahI" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahJ" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahM" = ( +/obj/machinery/atm{ + pixel_y = 31 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahP" = ( +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahQ" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ahR" = ( +/obj/machinery/camera/network/tether, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ahU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ahX" = ( +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_one) +"ahY" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ahZ" = ( +/obj/structure/sign/directions/cargo{ + dir = 4 + }, +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_one) +"aia" = ( +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_one) +"aib" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aic" = ( +/obj/machinery/atm{ + pixel_y = 31 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aid" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aie" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Cargo Shop"; + sortType = "Cargo Shop" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aif" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/tether, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aig" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/obj/machinery/smartfridge/secure/virology, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aih" = ( +/obj/machinery/button/remote/blast_door{ + id = "gogogo"; + name = "Test Chamber Blast Seal Control"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aii" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aij" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aik" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/electrical, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ail" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/voice, +/obj/item/device/radio/electropack, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aim" = ( +/obj/machinery/button/remote/blast_door{ + id = "suckysucky"; + name = "Scrubber Blast Door-Controller"; + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ain" = ( +/obj/machinery/chem_master{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aio" = ( +/obj/machinery/camera/network/research{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aip" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers, +/obj/item/clothing/glasses/science, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/item/weapon/storage/fancy/vials, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiq" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"air" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ais" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"ait" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aiu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiv" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aix" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiy" = ( +/turf/simulated/wall, +/area/storage/surface_eva/external) +"aiz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"aiA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"aiB" = ( +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiC" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"aiD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aiE" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aiF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiG" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/assembly/infra, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiH" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiI" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/full{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiJ" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/obj/item/device/reagent_scanner, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiK" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiL" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiM" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/chemistry_lab) +"aiN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aiO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aiP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "West Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor, +/area/tether/surfacebase/north_stairs_one) +"aiQ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/computer/area_atmos/tag, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiR" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + name = "Research Testing Scrubber" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiS" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aiT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"aiU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"aiV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aiW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"aiX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aiY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aiZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aja" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/tether/surfacebase/surface_one_hall) +"ajb" = ( +/obj/machinery/computer/arcade{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ajc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/common{ + req_one_access = newlist() + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ajd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aje" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ajf" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + breach_detection = 0; + dir = 8; + pixel_x = 25; + rcon_setting = 3; + report_danger_level = 0 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"ajg" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"ajh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aji" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"ajj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"ajk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"ajl" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_7) +"ajm" = ( +/obj/machinery/vending/tool{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"ajn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"ajo" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"ajp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ajq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ajr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"ajs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ajt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aju" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ajv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ajw" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/black/border, +/obj/machinery/atmospherics/binary/pump/high_power/on, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"ajx" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/obj/machinery/atmospherics/binary/pump/high_power/on, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"ajy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/atmospherics/binary/pump/high_power/on, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"ajz" = ( +/obj/structure/table/woodentable, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"ajA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ajB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ajC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"ajD" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"ajE" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"ajF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/railing, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"ajG" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ajH" = ( +/obj/structure/cable/heavyduty, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ajI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"ajJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ajK" = ( +/mob/living/simple_mob/animal/passive/gaslamp, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside1) +"ajL" = ( +/turf/simulated/wall, +/area/maintenance/lower/public_garden_maintenence) +"ajM" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"ajN" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "holodeck"; + name = "Holodeck Privacy Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "holodeck" + }, +/turf/simulated/floor/plating, +/area/holodeck_control) +"ajO" = ( +/turf/simulated/wall, +/area/holodeck_control) +"ajP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ajQ" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"ajR" = ( +/obj/effect/floor_decal/rust, +/obj/random/cigarettes, +/obj/random/junk, +/obj/random/junk, +/obj/random/tool, +/obj/effect/landmark/teleplumb_exit, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ajS" = ( +/turf/simulated/wall, +/area/tether/surfacebase/public_garden_one) +"ajT" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"ajU" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"ajV" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "holodeck"; + name = "Holodeck Privacy Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "holodeck" + }, +/turf/simulated/floor/plating, +/area/holodeck_control) +"ajW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/research, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ajX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ajY" = ( +/turf/simulated/floor/plating, +/area/tether/surfacebase/public_garden_one) +"ajZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"aka" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"akb" = ( +/obj/structure/grille, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_one) +"akc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"akd" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ake" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"akf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"akg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"akh" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "atrium" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_one) +"aki" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"akj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"akk" = ( +/obj/structure/grille, +/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_one) +"akl" = ( +/obj/random/junk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"akm" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"akn" = ( +/turf/simulated/mineral, +/area/maintenance/lower/public_garden_maintenence) +"ako" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"akp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"akq" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole/right, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"akr" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"aks" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"akt" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"aku" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"akv" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"akw" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"akx" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"aky" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"akz" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"akA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"akB" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/security/weaponsrange) +"akC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"akD" = ( +/obj/machinery/alarm{ + pixel_y = 23 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akG" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"akH" = ( +/obj/machinery/camera/network/outside{ + dir = 9 + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/holodeck_control) +"akI" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"akJ" = ( +/obj/structure/table/rack, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"akK" = ( +/turf/simulated/wall, +/area/tether/surfacebase/lowernortheva/external) +"akL" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"akM" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akN" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akO" = ( +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/machinery/camera/network/civilian, +/obj/structure/table/standard, +/obj/random/soap, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/holodeck_control) +"akP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/machinery/computer/timeclock/premade/north, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akR" = ( +/turf/simulated/wall, +/area/tether/surfacebase/public_garden) +"akS" = ( +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/tether/surfacebase/public_garden) +"akT" = ( +/obj/structure/sign/poster, +/turf/simulated/wall, +/area/tether/surfacebase/public_garden) +"akU" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akV" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"akW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akX" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"akY" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"akZ" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"ala" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alb" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alc" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/tether/surfacebase/public_garden_one) +"ald" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"ale" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alh" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden) +"ali" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alj" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"all" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"aln" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Public Gardens" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monofloor, +/area/tether/surfacebase/public_garden_one) +"alo" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"als" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden) +"alt" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alu" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"alv" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"aly" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alA" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alC" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alD" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"alE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"alF" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alG" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alH" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"alJ" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alK" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"alL" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/radio, +/obj/item/device/radio, +/turf/simulated/floor/tiled, +/area/rnd/testingroom) +"alM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alO" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"alP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alR" = ( +/obj/structure/bed/chair/wood, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"alS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/rnd/testingroom) +"alT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Testing Room"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/testingroom) +"alU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/rnd/testingroom) +"alV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access = list(8) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/tankstorage) +"alW" = ( +/obj/structure/sign/warning/caution, +/turf/simulated/wall/r_wall, +/area/rnd/tankstorage) +"alX" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable{ + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/random/junk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"alY" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "rnd_can_store" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/tankstorage) +"alZ" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/tankstorage) +"ama" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/computer/area_atmos/tag{ + dir = 4; + scrub_id = "rnd_can_store" + }, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/rnd/tankstorage) +"amb" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/tankstorage) +"amc" = ( +/obj/structure/sink{ + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"amd" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall/r_wall, +/area/rnd/tankstorage) +"ame" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"amf" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"amg" = ( +/obj/effect/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"amh" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"ami" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/coffee{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/public_garden) +"amj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amk" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/symbol/sa{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"aml" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/requests_console{ + department = "Tool Storage"; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amm" = ( +/obj/machinery/hologram/holopad, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amn" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amo" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amq" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"amr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"ams" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amt" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amu" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amv" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amw" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"amx" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amy" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amz" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amA" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"amB" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/public_garden_one) +"amC" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/snack{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/public_garden) +"amD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amE" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amF" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amG" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amH" = ( +/obj/item/weapon/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amI" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amJ" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amK" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amL" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amM" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"amN" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amO" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amP" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"amQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"amR" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amU" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amV" = ( +/obj/machinery/vending/assist{ + dir = 8 + }, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"amW" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel_dirty, +/area/rnd/tankstorage) +"amX" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"amZ" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/storage/primary) +"ana" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"anb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"anc" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"and" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/tankstorage) +"ane" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/testingroom) +"anf" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/cargo, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ang" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"anh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden) +"ani" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = -24 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"anj" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"ank" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"anl" = ( +/obj/machinery/disposal, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"anm" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_5) +"ann" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_3) +"ano" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/outside/outside1) +"anp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"anq" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ + pixel_y = 13 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ + pixel_x = 9 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{ + pixel_x = -10; + pixel_y = 5 + }, +/obj/item/trash/raisins{ + desc = "This trash looks like it's had one too many."; + name = "Wasted waste" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"anr" = ( +/obj/structure/catwalk, +/obj/random/cigarettes, +/obj/random/junk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"ans" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Public Gardens" + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/hallway/lower/first_west) +"ant" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/hallway/lower/first_west) +"anu" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/primary) +"anv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"anw" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"anx" = ( +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"any" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anA" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"anE" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_1) +"anF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"anG" = ( +/obj/machinery/door/airlock/maintenance/rnd{ + req_one_access = list(47,24) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/rnd/hallway) +"anH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/bed/chair/office/dark, +/obj/structure/barricade/cutout/ntsec, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"anI" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"anJ" = ( +/obj/machinery/space_heater, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"anK" = ( +/obj/structure/symbol/lo, +/turf/simulated/wall{ + can_open = 1 + }, +/area/maintenance/lower/atmos) +"anL" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"anM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"anN" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anO" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"anQ" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"anR" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"anS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/tether, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"anT" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"anU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + name = "Primary Tool Storage"; + sortType = "Primary Tool Storage" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"anV" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"anW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"anX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"anY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"anZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aoa" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/int{ + name = "Emergency Storage" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/surface_one_hall) +"aob" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aoc" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aod" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aoe" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "civ_airlock_scrubber" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/surface_eva/external) +"aof" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "civ_airlock_scrubber" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/surface_eva/external) +"aog" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aoh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aoi" = ( +/obj/structure/flora/pottedplant, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"aoj" = ( +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"aok" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aol" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/symbol/es{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aom" = ( +/obj/structure/closet/firecloset/full/double, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aon" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aoo" = ( +/obj/structure/table/standard, +/obj/item/device/t_scanner, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aop" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/trash_pit) +"aoq" = ( +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aor" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/storage/surface_eva/external) +"aos" = ( +/obj/structure/railing, +/obj/structure/grille, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "civ_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled, +/area/storage/surface_eva/external) +"aot" = ( +/obj/structure/railing, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/grille, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "civ_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled, +/area/storage/surface_eva/external) +"aou" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/civilian, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"aov" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/vending/wallmed_airlock{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"aow" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aox" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aoy" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/door/window/southleft, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aoz" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/door/window/southright, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aoA" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/shovel, +/obj/item/weapon/shovel, +/obj/item/weapon/soap, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aoB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"aoC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aoD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aoE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/lower/first_west) +"aoF" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/hallway/lower/first_west) +"aoG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/hallway/lower/first_west) +"aoH" = ( +/turf/simulated/wall, +/area/storage/art) +"aoI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/storage/art) +"aoJ" = ( +/obj/machinery/door/airlock/glass{ + name = "Art Storage" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/art) +"aoK" = ( +/obj/structure/sign/directions/evac{ + name = "\improper Secondary Evacuation Route" + }, +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_one) +"aoL" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/north_stairs_one) +"aoM" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aoN" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -4 + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_y = -10 + }, +/turf/simulated/wall, +/area/tether/surfacebase/north_stairs_one) +"aoO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aoP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aoQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aoR" = ( +/obj/machinery/light/flamp/noshade, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"aoS" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"aoT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aoU" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/atrium) +"aoV" = ( +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/storage/surface_eva/external) +"aoW" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ_airlock_outer"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/surface_eva/external) +"aoX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva/external) +"aoY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled, +/area/storage/surface_eva/external) +"aoZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ_airlock_inner"; + locked = 1 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "civ_airlock"; + pixel_x = 8; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/surface_eva/external) +"apa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/storage/surface_eva) +"apd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"ape" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/storage/surface_eva) +"aph" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"api" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"apj" = ( +/turf/simulated/mineral, +/area/vacant/vacant_site) +"apk" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/obj/random/drinkbottle, +/obj/machinery/light_switch{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"apl" = ( +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"apm" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/storage/surface_eva) +"apn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"apo" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"app" = ( +/obj/structure/table/rack, +/obj/random/cigarettes, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"apq" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/storage/fancy/crayons, +/turf/simulated/floor/tiled, +/area/storage/art) +"apr" = ( +/turf/simulated/floor/tiled, +/area/storage/art) +"aps" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"apt" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/tiled, +/area/storage/art) +"apu" = ( +/turf/simulated/wall, +/area/maintenance/lower/xenoflora) +"apv" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"apw" = ( +/obj/structure/stairs/south, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"apx" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"apy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"apz" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"apA" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"apB" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"apC" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"apD" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"apE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"apF" = ( +/turf/simulated/wall, +/area/maintenance/lower/vacant_site) +"apG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/vacant_site) +"apH" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "civ_airlock"; + pixel_x = -8; + pixel_y = -25 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ_airlock_outer"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/surface_eva/external) +"apI" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva/external) +"apJ" = ( +/obj/machinery/embedded_controller/radio/airlock/phoron{ + dir = 8; + id_tag = "civ_airlock"; + pixel_x = 25; + pixel_y = -30 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/airlock_sensor/phoron{ + id_tag = "civ_airlock_sensor"; + pixel_x = 25; + pixel_y = -40 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled, +/area/storage/surface_eva/external) +"apK" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ_airlock_inner"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/storage/surface_eva/external) +"apL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apN" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Surface EVA" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/turf/simulated/floor/tiled/monofloor, +/area/storage/surface_eva) +"apO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apQ" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"apS" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Surface EVA" + }, +/turf/simulated/floor/tiled/monofloor, +/area/storage/surface_eva) +"apT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"apU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"apV" = ( +/obj/effect/floor_decal/rust, +/obj/structure/table/rack, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"apW" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"apX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"apY" = ( +/obj/structure/table/standard, +/obj/item/device/camera_film{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/device/camera_film{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"apZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/storage/art) +"aqa" = ( +/obj/structure/table/standard, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"aqb" = ( +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"aqc" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aqd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aqe" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"aqf" = ( +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"aqg" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"aqh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aqi" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/vacant_site) +"aqj" = ( +/obj/structure/ladder/up, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"aqk" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"aql" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"aqm" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/storage/surface_eva/external) +"aqn" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "civ_airlock_scrubber" + }, +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/surface_eva/external) +"aqo" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "civ_airlock_scrubber" + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/surface_eva/external) +"aqp" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/structure/curtain/open/shower, +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/monotile, +/area/storage/surface_eva) +"aqq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/storage/surface_eva) +"aqr" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aqs" = ( +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = -3 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/status_display{ + layer = 4; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aqt" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/table/rack{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northleft, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aqu" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/table/rack{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northright, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aqv" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/item/weapon/tool/crowbar/red, +/obj/item/weapon/tool/crowbar/red, +/obj/item/weapon/tool/crowbar/red, +/obj/item/weapon/tool/crowbar/red, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/item/clothing/glasses/goggles, +/obj/item/clothing/glasses/goggles, +/turf/simulated/floor/tiled/dark, +/area/storage/surface_eva) +"aqw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aqx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aqy" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"aqz" = ( +/obj/structure/disposalpipe/segment, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"aqA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/cap/visible/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"aqB" = ( +/obj/structure/table/standard, +/obj/item/device/camera, +/obj/item/device/camera{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"aqC" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/storage/art) +"aqD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"aqE" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/hand_labeler, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"aqF" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/tether/surfacebase/north_stairs_one) +"aqG" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aqH" = ( +/obj/machinery/light/small, +/obj/structure/mopbucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"aqI" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_one_hall) +"aqJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aqK" = ( +/mob/living/simple_mob/animal/passive/fish/koi/poisonous, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"aqL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aqM" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_one_hall) +"aqN" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/vacant_site) +"aqO" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"aqP" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"aqQ" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"aqR" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/lowernortheva/external) +"aqS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm2"; + name = "Room 2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_2) +"aqT" = ( +/turf/simulated/wall/r_wall, +/area/storage/surface_eva/external) +"aqU" = ( +/turf/simulated/wall/r_wall, +/area/storage/surface_eva) +"aqV" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/first_aid_west) +"aqW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aqX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aqY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/tether{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"aqZ" = ( +/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"ara" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"arb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"arc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"ard" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/device/taperecorder, +/obj/item/device/taperecorder, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"are" = ( +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"arf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"arg" = ( +/obj/structure/railing, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"arh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"ari" = ( +/turf/simulated/floor, +/area/maintenance/lower/xenoflora) +"arj" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"ark" = ( +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"arl" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"arm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/loadout/accessory, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"arn" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/device/radio/emergency, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"aro" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arp" = ( +/obj/machinery/sleep_console, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arq" = ( +/obj/machinery/vending/wallmed1/public{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arr" = ( +/obj/structure/sign/redcross{ + name = "FirstAid" + }, +/turf/simulated/wall, +/area/tether/surfacebase/medical/first_aid_west) +"ars" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"art" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/weapon/tape_roll{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/tape_roll, +/turf/simulated/floor/tiled, +/area/storage/art) +"aru" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/weapon/pen/red{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/storage/art) +"arv" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"arw" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/random/junk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"arx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/tether{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ary" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"arz" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"arA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"arB" = ( +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"arC" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"arD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/loadout/gadget, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"arE" = ( +/obj/structure/table/rack, +/obj/item/bodybag/cryobag, +/obj/item/weapon/tool/crowbar, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/item/device/defib_kit/loaded, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arG" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arH" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "First-Aid Station"; + req_one_access = newlist() + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/medical/first_aid_west) +"arI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"arJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"arK" = ( +/obj/structure/closet, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"arL" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"arM" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/random/trash_pile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"arN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"arO" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"arP" = ( +/obj/structure/table/glass, +/obj/item/device/radio/phone/medbay{ + name = "Medical Emergency Phone" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arQ" = ( +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arR" = ( +/obj/structure/table/glass, +/obj/random/medical/lite, +/obj/item/device/radio/intercom/department/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = 28 + }, +/obj/structure/bed/roller, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/first_aid_west) +"arT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/tether/surfacebase/medical/first_aid_west) +"arU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"arV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"arW" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/hallway/lower/first_west) +"arX" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"arY" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"arZ" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"asa" = ( +/obj/structure/sign/directions/evac, +/turf/simulated/wall, +/area/tether/surfacebase/surface_one_hall) +"asb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"asc" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"asd" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"ase" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"asf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"asg" = ( +/obj/structure/sign/directions/evac, +/turf/simulated/wall, +/area/crew_quarters/locker) +"ash" = ( +/turf/simulated/wall, +/area/crew_quarters/locker) +"asi" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Locker Room Maintenance" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/locker) +"asj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ask" = ( +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"asl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"asm" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/turf/simulated/floor/tiled/monofloor, +/area/hallway/lower/first_west) +"asn" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/random/cutout, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"aso" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"asp" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"asq" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"asr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ass" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ast" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/shoes/black, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"asu" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/clothing/shoes/black, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"asv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"asw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"asx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"asy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"asz" = ( +/turf/simulated/wall/r_wall, +/area/rnd/xenoarch_storage) +"asA" = ( +/obj/item/weapon/storage/excavation, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/wrench, +/obj/item/device/measuring_tape, +/obj/item/stack/flag/yellow, +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"asB" = ( +/obj/item/weapon/storage/excavation, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/wrench, +/obj/item/device/measuring_tape, +/obj/item/stack/flag/yellow, +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"asC" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"asD" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"asE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"asF" = ( +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/maintenance/research, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"asG" = ( +/obj/effect/map_effect/portal/master/side_a{ + dir = 1; + name = "to_wilderness"; + portal_id = "wilderness_step" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"asH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"asI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"asJ" = ( +/obj/structure/catwalk, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"asK" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"asL" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"asM" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/surface_one_hall) +"asN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"asO" = ( +/obj/machinery/light/small, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) +"asP" = ( +/obj/effect/floor_decal/rust, +/obj/effect/map_effect/portal/master/side_a{ + dir = 4; + name = "to_solars"; + portal_id = "solarstep" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"asQ" = ( +/obj/effect/floor_decal/rust, +/obj/effect/map_effect/portal/line/side_a{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"asR" = ( +/obj/effect/map_effect/portal/line/side_a{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"asS" = ( +/obj/effect/map_effect/portal/line/side_a{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"asT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"asU" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"asV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"asW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"asX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"asY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"asZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ata" = ( +/obj/structure/closet/crate, +/obj/random/action_figure, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"atb" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet/crate, +/obj/random/maintenance/research, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/obj/item/weapon/pickaxe, +/turf/simulated/floor/plating, +/area/vacant/vacant_site) +"atc" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atd" = ( +/obj/machinery/door/airlock{ + id_tag = "lg_1"; + name = "Looking Glass" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_one) +"ate" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"atf" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/random/trash_pile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"atg" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"ath" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + name = "\improper Secondary Evacuation Route" + }, +/turf/simulated/wall, +/area/maintenance/lower/xenoflora) +"ati" = ( +/obj/structure/sign/directions/evac{ + name = "\improper Secondary Evacuation Route" + }, +/turf/simulated/wall, +/area/maintenance/lower/xenoflora) +"atj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"atk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"atl" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"atm" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"atn" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ato" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atp" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atq" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atr" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/random/soap, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"ats" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"att" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/recharger, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atu" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/random/maintenance/clean, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atx" = ( +/turf/simulated/wall, +/area/tether/surfacebase/tram) +"aty" = ( +/obj/structure/sign/warning{ + name = "\improper STAND AWAY FROM TRACK EDGE" + }, +/turf/simulated/wall, +/area/tether/surfacebase/tram) +"atz" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"atA" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"atB" = ( +/turf/simulated/floor/maglev, +/area/tether/surfacebase/tram) +"atC" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"atD" = ( +/obj/structure/closet/excavation, +/obj/item/weapon/melee/umbrella/random, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"atE" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"atF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"atG" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall, +/area/maintenance/substation/civ_west) +"atH" = ( +/turf/simulated/wall, +/area/maintenance/substation/civ_west) +"atI" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atJ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atK" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"atL" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"atM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"atN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atO" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atP" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atQ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"atR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"atW" = ( +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"atX" = ( +/obj/structure/bed/chair, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"atY" = ( +/obj/structure/bed/chair, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"atZ" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aua" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"aub" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/tram) +"auc" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"aud" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"aue" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"aug" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"auh" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/item/weapon/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/tiled, +/area/rnd/xenoarch_storage) +"aui" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"auj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"auk" = ( +/obj/machinery/door/airlock/engineering{ + name = "Civilian West Substation"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/maintenance/substation/civ_west) +"aul" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Civ West Subgrid"; + name_tag = "Civ West Subgrid" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civ_west) +"aum" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Civ West"; + output_attempt = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civ_west) +"aun" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Civ West Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civ_west) +"auo" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"aup" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/common{ + name = "Mining Maintenance Access" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"auq" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"aur" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"aus" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aut" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"auu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"auv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/structure/closet/wardrobe/mixed, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"auw" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/machinery/computer/timeclock/premade/south, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"aux" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/structure/closet/wardrobe/suit, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"auy" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/machinery/light, +/obj/item/clothing/shoes/black, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"auz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"auA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auB" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auC" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auD" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/wall, +/area/tether/surfacebase/tram) +"auE" = ( +/turf/simulated/wall, +/area/rnd/xenoarch_storage) +"auF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"auG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"auH" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civ_west) +"auI" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civ_west) +"auJ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/civ_west) +"auK" = ( +/turf/simulated/wall, +/area/maintenance/lower/solars) +"auL" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"auM" = ( +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"auN" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"auO" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"auP" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water/pool, +/area/tether/surfacebase/surface_one_hall) +"auQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"auR" = ( +/turf/simulated/wall, +/area/security/checkpoint) +"auS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auU" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"auW" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "rnd_s_airlock_scrubber" + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/external) +"auY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"auZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"ava" = ( +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Research Division Access"; + req_access = list(47) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/lower/first_west) +"avb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"avc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/camera/network/tether{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"avd" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall, +/area/maintenance/lower/solars) +"ave" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Civilian West Substation"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avf" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/engi{ + id_tag = "elevescaper"; + name = "Elevator Maintenance" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"avj" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Solars Maintenance Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"avk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"avl" = ( +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"avm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/tether{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"avn" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"avo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"avp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + id_tag = null; + layer = 2.8; + name = "Security Checkpoint"; + req_access = list(1) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = 10; + pixel_y = 36 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/security, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/bookcase, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/security_space_law, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"avA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"avB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"avC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"avD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"avE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"avF" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"avG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"avH" = ( +/obj/structure/sign/department/anomaly, +/turf/simulated/wall, +/area/hallway/lower/first_west) +"avI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"avJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"avK" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/railing, +/obj/structure/table/rack, +/obj/random/maintenance/medical, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance/medical, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avO" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"avP" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"avQ" = ( +/obj/structure/reagent_dispensers/virusfood{ + density = 0; + pixel_y = 62 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"avR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"avS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"avT" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/lower/xenoflora) +"avU" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/surface_one_hall) +"avV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"avW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"avX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"avY" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"avZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/computer/security{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awa" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/red, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/filingcabinet/security{ + name = "Security Records" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awd" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awe" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"awj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"awl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"awm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/mauve/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"awn" = ( +/turf/simulated/wall, +/area/rnd/hallway) +"awo" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/lower/first_west) +"awp" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/cola{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/lower/first_west) +"awq" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/fitness{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/lower/first_west) +"awr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aws" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"awt" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"awu" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"awv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"aww" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/camera/network/medbay{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awy" = ( +/obj/structure/closet/secure_closet/paramedic, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"awz" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awA" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "elevescaper"; + name = "elevator escape button"; + pixel_y = 32 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"awC" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awD" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/disposalpipe/up, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"awE" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awF" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awG" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"awI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"awJ" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"awK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/camera/network/tether{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"awL" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall, +/area/security/checkpoint) +"awM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/brigdoor/northright, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/monotile, +/area/security/checkpoint) +"awN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/security/checkpoint) +"awO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/glass, +/obj/item/weapon/folder/red, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"awR" = ( +/obj/machinery/vending/snack{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"awS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"awT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"awU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"awV" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 8; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 24; + pixel_y = 25; + req_access = list(39) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access = list(39) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "virologyquar"; + name = "Virology Emergency Quarantine Blast Doors"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"awY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"awZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"axa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/paramed) +"axb" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access = list(39) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"axc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 8; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = 25; + req_access = list(39) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -38; + pixel_y = -30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"axd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"axe" = ( +/obj/machinery/door/airlock/maintenance/engi{ + name = "Elevator Maintenance" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"axf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"axg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axh" = ( +/obj/machinery/camera/network/northern_star, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"axk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axl" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/power/apc/high{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axn" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/camera/network/northern_star{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axo" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/light, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axq" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axr" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axs" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/security/checkpoint) +"axt" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/security/checkpoint) +"axu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"axv" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"axw" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"axx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/security/checkpoint) +"axy" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/tram, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"axz" = ( +/obj/machinery/vending/cola{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"axA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"axB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"axC" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"axD" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"axE" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"axF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/disease2/isolator, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"axG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"axH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"axI" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"axJ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"axK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"axL" = ( +/obj/structure/sign/nosmoking_1, +/turf/simulated/wall, +/area/tether/surfacebase/medical/lowerhall) +"axM" = ( +/obj/machinery/vending/coffee{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"axN" = ( +/obj/machinery/vending/fitness{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"axO" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"axP" = ( +/turf/simulated/wall, +/area/tether/surfacebase/medical/centralstairwell) +"axQ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"axR" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"axS" = ( +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"axT" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axU" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"axZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aya" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayd" = ( +/obj/machinery/shower{ + dir = 4; + pixel_x = 2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/curtain/open/shower/medical, +/turf/simulated/floor/tiled/steel, +/area/medical/virologyaccess) +"aye" = ( +/obj/structure/table/standard, +/obj/random/medical, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"ayf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyaccess) +"ayg" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 4; + id_tag = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = -28; + pixel_y = -6; + tag_exterior_door = "virology_airlock_exterior"; + tag_interior_door = "virology_airlock_interior" + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + dir = 4; + id = "virologyquar"; + name = "Virology Emergency Lockdown Control"; + pixel_x = -28; + pixel_y = 6; + req_access = list(5) + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayh" = ( +/turf/simulated/wall, +/area/crew_quarters/locker/laundry_arrival) +"ayi" = ( +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/turf/simulated/wall, +/area/crew_quarters/locker/laundry_arrival) +"ayj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayk" = ( +/obj/structure/table/glass, +/obj/item/device/radio{ + anchored = 1; + canhear_range = 7; + frequency = 1487; + icon = 'icons/obj/items.dmi'; + icon_state = "red_phone"; + name = "Virology Emergency Phone"; + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/device/antibody_scanner, +/obj/item/device/antibody_scanner{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aym" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + icon_state = "monotile" + }, +/area/security/checkpoint) +"ayn" = ( +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/turf/simulated/wall, +/area/security/checkpoint) +"ayo" = ( +/obj/structure/grille, +/obj/structure/railing, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"ayp" = ( +/obj/structure/sign/warning/nosmoking_1, +/turf/simulated/wall, +/area/tether/surfacebase/tram) +"ayq" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"ayr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ays" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ayt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayw" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Virology Laboratory"; + req_access = list(39) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayA" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayB" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/tagger{ + dir = 2; + name = "package tagger - Void"; + sort_tag = "Void" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"ayC" = ( +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"ayD" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"ayE" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayG" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayH" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ayK" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayM" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/monkeycubes, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ayN" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayQ" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/vending/fitness, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/locker/laundry_arrival) +"ayR" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/locker/laundry_arrival) +"ayS" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/locker/laundry_arrival) +"ayT" = ( +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/locker/laundry_arrival) +"ayU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"ayV" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/laundry_basket, +/obj/item/weapon/tape_roll, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"ayW" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"ayX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"ayY" = ( +/obj/structure/stairs/east, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"ayZ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"aza" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"azb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"azc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aze" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/camera/network/tether, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azm" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/tram) +"azn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/landmark/tram, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"azo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/landmark/tram, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"azp" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/cryopod/robot/door/tram, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/tram) +"azq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"azs" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/lower/solars) +"azt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"azu" = ( +/obj/item/device/radio{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Virology. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Virology Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/hand_labeler, +/obj/structure/table/glass, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azv" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/lime/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/lime/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azw" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/lockbox/vials, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/storage/secure/safe{ + pixel_y = -28 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azx" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/lime/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azA" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"azB" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/storage/box/cups, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"azC" = ( +/obj/structure/reagent_dispensers/water_cooler/full{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"azD" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"azE" = ( +/obj/structure/railing, +/obj/machinery/camera/network/medbay{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"azF" = ( +/obj/structure/stairs/east, +/obj/structure/railing, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"azG" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'CRUSH WARNING'."; + name = "\improper CRUSH WARNING"; + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"azH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/medical/virology) +"azI" = ( +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Virology Isolation Room One"; + req_one_access = list(39) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azJ" = ( +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Virology Isolation Room Two"; + req_one_access = list(39) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azK" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"azL" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azM" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azN" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azO" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"azT" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"azU" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'CRUSH WARNING'."; + name = "\improper CRUSH WARNING"; + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"azV" = ( +/turf/simulated/wall, +/area/medical/virology) +"azW" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"azZ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aAa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"aAd" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"aAe" = ( +/obj/structure/bed/padded, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aAf" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/crew_quarters/locker/laundry_arrival) +"aAg" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aAh" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/status_display{ + layer = 4; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aAi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/medical{ + name = "Medical Maintenance Access"; + req_access = list(5) + }, +/obj/machinery/door/blast/shutters{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayquar"; + layer = 1; + name = "Medbay Emergency Lockdown Shutters"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralstairwell) +"aAj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/rnd{ + name = "Science Maintenance" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aAk" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aAl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aAm" = ( +/obj/random/junk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAo" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAp" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAq" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAr" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aAt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aAv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/rnd{ + name = "Science Maintenance" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aAy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aAz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAA" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAB" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "northciv_airlock_scrubber" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/lowernortheva) +"aAC" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"aAD" = ( +/turf/simulated/wall, +/area/maintenance/lowmedbaymaint) +"aAE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAG" = ( +/turf/simulated/mineral, +/area/maintenance/lowmedbaymaint) +"aAH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAI" = ( +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAJ" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ + frequency = 1379; + scrub_id = "northciv_airlock_scrubber" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/lowernortheva) +"aAK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAL" = ( +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAM" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"aAN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aAO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aAP" = ( +/obj/structure/sign/directions/evac{ + name = "\improper Secondary Evacuation Route" + }, +/turf/simulated/wall, +/area/tether/surfacebase/surface_one_hall) +"aAQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/obj/machinery/door/airlock/glass_external/public{ + name = "Evacuation Route" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/surface_one_hall) +"aAR" = ( +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/turf/simulated/wall, +/area/tether/surfacebase/surface_one_hall) +"aAS" = ( +/obj/structure/closet/crate, +/obj/item/weapon/handcuffs/fuzzy, +/obj/random/maintenance/security, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_one_hall) +"aAT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAU" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAV" = ( +/obj/structure/railing, +/obj/structure/table/rack, +/obj/item/clothing/suit/suspenders, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAW" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/maintenance/lowmedbaymaint) +"aAX" = ( +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aAY" = ( +/obj/structure/railing, +/obj/structure/closet/crate, +/obj/item/device/camera, +/obj/item/device/tape/random, +/obj/item/device/taperecorder/empty, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aAZ" = ( +/obj/structure/railing, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBa" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBc" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/random/cigarettes, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBd" = ( +/obj/random/trash_pile, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBe" = ( +/obj/structure/railing, +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/weapon/tank/emergency, +/obj/item/weapon/tank/emergency, +/obj/item/weapon/tank/emergency, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/visible/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aBi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aBj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBk" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"aBl" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBn" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"aBo" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aBp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aBq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"aBr" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"aBt" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBu" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aBv" = ( +/turf/simulated/wall, +/area/rnd/miscellaneous_lab) +"aBw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aBx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBz" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -13; + pixel_y = -30 + }, +/obj/structure/cable, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBA" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBB" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBE" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBG" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBH" = ( +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/weapon/tank/oxygen/red, +/obj/item/clothing/mask/gas/wwii, +/obj/item/clothing/head/hardhat/red, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBJ" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/lower/research) +"aBK" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aBN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBO" = ( +/turf/simulated/wall, +/area/maintenance/lower/research) +"aBP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aBR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/crew_quarters/locker/laundry_arrival) +"aBS" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/locker/laundry_arrival) +"aBT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/locker/laundry_arrival) +"aBU" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aBV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aBW" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aBY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_one_hall) +"aBZ" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/surface_one_hall) +"aCa" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aCb" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aCc" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aCd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aCh" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCi" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCj" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aCk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aCl" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aCm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCp" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common{ + name = "Mining Maintenance Access" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/lowernorthhall) +"aCr" = ( +/turf/simulated/wall, +/area/tether/surfacebase/cargostore/warehouse) +"aCs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCt" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCu" = ( +/obj/structure/railing, +/obj/structure/closet/crate, +/obj/item/clothing/head/that, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCv" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCx" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Atmospherics Subgrid"; + name_tag = "Atmospherics Subgrid" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aCy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCA" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCB" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aCD" = ( +/obj/machinery/recharge_station, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aCE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aCF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aCG" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aCH" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aCI" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aCJ" = ( +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"aCK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aCL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/mining, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargostore/warehouse) +"aCM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aCN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aCO" = ( +/turf/simulated/wall, +/area/crew_quarters/visitor_dining) +"aCP" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aCQ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aCR" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aCS" = ( +/obj/structure/flora/pottedplant, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aCT" = ( +/obj/machinery/vending/fitness{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aCU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aCV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aCW" = ( +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aCX" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCY" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aCZ" = ( +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aDa" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 10; + id = "gloriouscargopipeline" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDb" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "gloriouscargopipeline" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDe" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDf" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDg" = ( +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDi" = ( +/turf/simulated/wall, +/area/tether/surfacebase/emergency_storage/rnd) +"aDj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/catwalk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aDk" = ( +/obj/item/weapon/bone/skull/unathi, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aDl" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aDm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aDn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aDo" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aDp" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aDq" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"aDr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDs" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDt" = ( +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDu" = ( +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aDv" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aDw" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aDx" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aDy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aDB" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDC" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDD" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDE" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aDG" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aDH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aDI" = ( +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aDJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/vending/cola{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/monotile, +/area/rnd/hallway) +"aDL" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDM" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aDN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aDO" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aDP" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aDQ" = ( +/obj/machinery/space_heater, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aDR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aDS" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Laundry Maintenance Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/locker/laundry_arrival) +"aDT" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/tether/surfacebase/surface_one_hall) +"aDU" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "gloriouscargopipeline" + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "gloriouscargopipeline"; + name = "Mining Ops conveyor switch"; + pixel_x = -5; + pixel_y = -3; + req_access = list(48); + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aDX" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aDY" = ( +/obj/machinery/door/window{ + dir = 8; + req_one_access = list(25) + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aDZ" = ( +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = 10; + pixel_y = 36 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "cafe"; + name = "Cafe Shutters"; + pixel_x = -10; + pixel_y = 36; + req_one_access = list(25) + }, +/obj/structure/sink{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aEa" = ( +/obj/structure/table/marble, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/reagent_containers/food/condiment/small/sugar, +/obj/machinery/floor_light/prebuilt{ + on = 1 + }, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aEb" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aEc" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aEd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEe" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aEf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEi" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEj" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/warning/moving_parts{ + desc = "A warning sign for moving parts. This one states 'Put your gathered ore here for processing!' on it."; + name = "To Mining Operations Processing"; + pixel_x = -32 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEm" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aEn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/monotile, +/area/rnd/hallway) +"aEo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aEq" = ( +/obj/machinery/door/airlock/maintenance/int{ + name = "Emergency Storage" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/hallway) +"aEr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aEs" = ( +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aEt" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aEu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aEv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aEw" = ( +/obj/effect/floor_decal/rust, +/obj/structure/railing, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aEx" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aEy" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aEz" = ( +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aEA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aEB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aEC" = ( +/obj/structure/table/rack, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aED" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aEE" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aEF" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + id_tag = null; + name = "Construction Site" + }, +/turf/simulated/floor/tiled/monofloor, +/area/tether/surfacebase/surface_one_hall) +"aEG" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aEI" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/crew_quarters/visitor_dining) +"aEJ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aEK" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aEL" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aEM" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aEN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aEO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aEP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aEQ" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/maintenance/lower/solars) +"aER" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/solars) +"aES" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aET" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aEU" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEW" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"aEX" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aEY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aEZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/camera/network/cargo, +/obj/structure/bed/chair, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFc" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "Shop Warehouse"; + req_one_access = list(48) + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargostore/warehouse) +"aFd" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargostore/warehouse) +"aFe" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFh" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aFi" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aFj" = ( +/obj/structure/table/standard, +/obj/item/device/t_scanner, +/obj/item/weapon/storage/briefcase/inflatable, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/emergency_storage/rnd) +"aFk" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/bench/steel, +/obj/random/cigarettes, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aFl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aFm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/holosign/bar{ + id = "maintbar"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aFn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aFo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aFp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/external{ + name = "Evacuation Route" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aFq" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"aFr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"aFs" = ( +/obj/machinery/atmospherics/pipe/cap/visible/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"aFt" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Warehouse" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargostore/warehouse) +"aFu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFw" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + id_tag = null; + name = "Cafe" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor, +/area/crew_quarters/visitor_dining) +"aFx" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aFy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aFz" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aFA" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aFB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/landmark/start{ + name = "Bartender" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aFC" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/machinery/floor_light/prebuilt{ + on = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aFD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/visitor_dining) +"aFE" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFF" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aFN" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + name = "\improper Secondary Evacuation Route" + }, +/turf/simulated/wall, +/area/maintenance/lower/research) +"aFO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFP" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aFR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aFS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aFT" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/machinery/floor_light/prebuilt{ + on = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aFU" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFV" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFW" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aFY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aFZ" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aGa" = ( +/turf/simulated/wall, +/area/tether/surfacebase/cargostore) +"aGb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGi" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGj" = ( +/turf/simulated/wall, +/area/tether/surfacebase/cargostore/office) +"aGk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/power/apc/high{ + dir = 4; + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGr" = ( +/obj/structure/bed/chair/sofa/brown/right, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGs" = ( +/obj/structure/bed/chair/sofa/brown/corner, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGt" = ( +/turf/simulated/wall, +/area/vacant/vacant_site/east) +"aGu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aGv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aGw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aGx" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aGy" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + dir = 8 + }, +/obj/machinery/floor_light/prebuilt{ + on = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aGz" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aGA" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aGB" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/high{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aGC" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aGD" = ( +/obj/structure/cable/ender{ + icon_state = "4-8"; + id = "surface-solars" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aGE" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aGF" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aGG" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aGH" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aGI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aGJ" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aGK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGP" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aGQ" = ( +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/cargostore/office) +"aGR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aGS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGT" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like it's on MTV. Now you can't blame that demi-cowgirl for working her money maker. I wonder what else is on?"; + icon_state = "frame"; + pixel_x = 16; + pixel_y = 64 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGU" = ( +/obj/structure/bed/chair/sofa/brown/left{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aGV" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aGW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGX" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aGZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aHa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/structure/closet/bombcloset, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aHb" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aHc" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aHd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aHe" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aHf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aHg" = ( +/obj/random/action_figure, +/obj/random/action_figure, +/obj/random/action_figure, +/obj/structure/closet/wardrobe/grey{ + starts_with = list(/obj/structure/barricade/cutout/viva, /obj/item/clothing/under/color/grey = 3, /obj/item/clothing/shoes/black = 3, /obj/item/clothing/head/soft/grey = 3, /obj/item/clothing/mask/gas/wwii = 3, /obj/item/weapon/storage/toolbox/mechanical = 3, /obj/item/clothing/gloves/fyellow = 3, /obj/item/weapon/card/id/gold/captain/spare/fakespare = 3, /obj/item/weapon/soap/syndie = 3, /obj/item/weapon/storage/box/mousetraps = 3) + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aHh" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aHi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aHj" = ( +/obj/machinery/door/window/southright{ + req_access = list(5) + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aHk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aHl" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aHm" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aHn" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_dining) +"aHo" = ( +/obj/structure/sign/warning/high_voltage{ + name = "\improper SOLAR FARM" + }, +/turf/unsimulated/wall/planetary/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aHp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aHq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aHr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aHs" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aHt" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/rnd{ + name = "Science Maintenance" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/hallway) +"aHu" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/boxinggloves, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aHv" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/substation/surface_atmos) +"aHw" = ( +/obj/effect/floor_decal/rust, +/obj/random/trash_pile, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aHx" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aHy" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aHz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aHA" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aHB" = ( +/obj/effect/floor_decal/rust, +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm3) +"aHC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aHD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aHE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/button/remote/airlock{ + id = "maintdorm2"; + name = "Room 2 Lock"; + pixel_x = 23; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aHF" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westleft{ + req_access = list(31) + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aHG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/visitor_dining) +"aHH" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aHI" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aHJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/visitor_dining) +"aHK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aHL" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside1) +"aHM" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet, +/obj/machinery/conveyor{ + id = "surfacecargo" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/sign/warning{ + desc = "A warning sign. It has great big words saying 'Surface Cargo Deliveries. Stay behind the railings when active!' on it."; + name = "Surface Cargo Delivery"; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/cargostore) +"aHN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aHO" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aHP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aHQ" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aHR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aHS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aHT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aHU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aHV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common{ + name = "Mining Maintenance Access" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/cargostore) +"aHW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/button/remote/airlock{ + id = "maintdorm1"; + name = "Room 1 Lock"; + pixel_x = 23; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"aHX" = ( +/obj/effect/floor_decal/rust, +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm1) +"aHY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aHZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aIa" = ( +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aIb" = ( +/obj/structure/railing, +/obj/structure/closet, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/cigarettes, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aIc" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aId" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aIe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aIf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aIg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm3) +"aIh" = ( +/turf/simulated/wall/r_wall, +/area/engineering/atmos) +"aIi" = ( +/obj/structure/table, +/obj/item/frame, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aIj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aIk" = ( +/obj/structure/railing, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aIl" = ( +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aIm" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aIn" = ( +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aIo" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aIp" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aIq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aIr" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aIt" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIv" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIw" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIx" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIz" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aIA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aIB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/vending/wallmed_airlock{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aIC" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/binary/passive_gate/on, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aID" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aIE" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aIF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aIG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aIH" = ( +/obj/structure/table, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"aII" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aIJ" = ( +/obj/effect/floor_decal/rust, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aIK" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aIL" = ( +/obj/structure/table/rack, +/obj/random/junk, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aIM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aIN" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Atmospherics"; + charge = 2e+006 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aIO" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Atmos Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/surface_atmos) +"aIP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + pixel_y = 9 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aIU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/machinery/camera/network/engineering, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIX" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aIY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aIZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aJa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aJb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aJc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJi" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aJk" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + req_access = list(31) + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aJl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aJm" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/condiment/small/sugar, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJn" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJo" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJq" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aJs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aJt" = ( +/obj/structure/railing, +/obj/machinery/conveyor{ + dir = 5; + id = "surfacecargo" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aJu" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/stack/material/wood{ + amount = 10 + }, +/obj/structure/table, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aJv" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aJw" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aJx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aJy" = ( +/obj/structure/table/standard, +/obj/item/weapon/stamp/cargo, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/yellow, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aJz" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/retail_scanner/civilian, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aJA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aJB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aJC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aJD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_construct/small, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aJE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aJF" = ( +/turf/simulated/wall/r_wall, +/area/engineering/atmos/gas_storage) +"aJG" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Substation"; + req_access = list(24) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aJH" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aJI" = ( +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aJJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aJK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aJL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aJM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aJN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aJO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/structure/table/standard, +/obj/item/stack/cable_coil/random_belt, +/obj/item/stack/cable_coil/random_belt, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/item/taperoll/atmos, +/obj/item/stack/cable_coil/random_belt, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aJP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/shifted, +/obj/effect/floor_decal/corner/lightgrey/border/shifted, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJQ" = ( +/obj/effect/floor_decal/borderfloor/shifted, +/obj/effect/floor_decal/corner/lightgrey/border/shifted, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/shifted, +/obj/effect/floor_decal/corner/lightgrey/border/shifted, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aJS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aJT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aJU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aJV" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aJX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aJY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"aJZ" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) +"aKa" = ( +/turf/simulated/wall, +/area/maintenance/asmaint2) +"aKb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aKc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aKd" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aKe" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aKf" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aKg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aKh" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/weapon/tank/oxygen/red, +/obj/item/clothing/mask/gas/wwii, +/obj/item/clothing/head/hardhat/red, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aKi" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aKj" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aKk" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aKl" = ( +/obj/structure/table/standard, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 3; + name = "Atmos RC"; + pixel_y = 28 + }, +/obj/item/weapon/tool/wrench, +/obj/item/device/t_scanner, +/obj/item/weapon/storage/belt/utility/atmostech, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKm" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/table/standard, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/item/device/radio/headset/headset_eng, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc/super{ + dir = 1; + pixel_y = 28 + }, +/obj/machinery/button/remote/blast_door{ + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + req_one_access = list(10,24) + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKn" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/fireaxecabinet{ + pixel_y = 32 + }, +/obj/structure/table/standard, +/obj/item/device/pipe_painter{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/pipe_painter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKo" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/structure/table/standard, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKp" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKq" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKr" = ( +/obj/structure/railing, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aKs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/supply, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/cee, +/obj/effect/floor_decal/industrial/danger/cee, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aKv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing, +/obj/structure/table/standard, +/obj/random/maintenance/engineering, +/obj/item/stack/cable_coil/random_belt, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aKx" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKy" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKz" = ( +/obj/item/weapon/beach_ball/holoball, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aKA" = ( +/obj/structure/stairs/south, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKC" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/random/plushie, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKD" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/vending/coffee{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKE" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/lapvend{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKF" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/window/northright{ + dir = 4; + name = "Mailing Room"; + req_access = list(50) + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "surfcargooffice"; + layer = 3.3; + name = "Cargo Office Shutters" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aKH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aKI" = ( +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/machinery/button/remote/blast_door{ + id = "surfcargooffice"; + name = "Office Shutters"; + pixel_x = -7; + pixel_y = 24; + req_access = list(31) + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aKJ" = ( +/obj/machinery/light, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aKK" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aKL" = ( +/turf/simulated/wall, +/area/rnd/external) +"aKM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "rnd_s_airlock_inner"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/external) +"aKN" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/access_button/airlock_interior{ + master_tag = "rnd_s_airlock"; + pixel_x = 25; + pixel_y = 24 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "rnd_s_airlock_inner"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/external) +"aKO" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aKP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aKQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aKR" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aKS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"aKT" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aKU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/pipedispenser, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKV" = ( +/obj/item/weapon/stool, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKW" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKX" = ( +/obj/structure/cable/cyan{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/machinery/atmospherics/pipe/zpipe/up, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aKY" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aKZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + name = "Distro Loop Drain" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + name = "Waste to Filter" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + name = "Air to Distro" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLc" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLd" = ( +/obj/machinery/atmospherics/pipe/zpipe/up, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aLe" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aLg" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_7) +"aLh" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/crew_quarters/visitor_lodging) +"aLi" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/crew_quarters/visitor_lodging) +"aLj" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_8) +"aLk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aLl" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"aLm" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"aLn" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/fire{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/external) +"aLo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/embedded_controller/radio/airlock/phoron{ + id_tag = "rnd_s_airlock"; + pixel_y = 30 + }, +/obj/machinery/airlock_sensor/phoron{ + id_tag = "rnd_s_airlock_sensor"; + pixel_x = 11; + pixel_y = 30 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled, +/area/rnd/external) +"aLp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/external) +"aLq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/external) +"aLr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "rnd_s_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled, +/area/rnd/external) +"aLs" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/external) +"aLt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aLu" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aLv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aLw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aLx" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aLy" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aLz" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aLA" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/pipedispenser/disposal, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLB" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLC" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLD" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLE" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump/on{ + name = "Ports to Waste" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLF" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLG" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLH" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "Scrubber to Waste" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLI" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + name = "Air to Distro" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLJ" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + name = "Air to Ports" + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"aLL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aLM" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_7/holo) +"aLN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/computer/HolodeckControl/holodorm/seven, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"aLO" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"aLP" = ( +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aLQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aLR" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aLS" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 26 + }, +/obj/random/drinkbottle, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aLT" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aLU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aLV" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aLW" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_8) +"aLX" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_8) +"aLY" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/external) +"aLZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aMa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/external) +"aMb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/external) +"aMc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"aMd" = ( +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/external) +"aMe" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aMf" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aMg" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_atmos{ + name = "Canister Storage"; + req_access = list(24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMn" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/red, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMq" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + target_pressure = 300 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMw" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aMx" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_7/holo) +"aMy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"aMz" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm7"; + name = "Room 7 Lock"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"aMA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aMB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aMC" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm8"; + name = "Room 8 Lock"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aMD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aMF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aMG" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aMH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_8) +"aMI" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_8) +"aMJ" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "rnd_s_airlock_outer"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/external) +"aMK" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "rnd_s_airlock"; + pixel_x = 25; + pixel_y = -8; + req_access = list(47) + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "rnd_s_airlock_outer"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/external) +"aML" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aMM" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"aMN" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_atmos{ + name = "Canister Storage"; + req_access = list(24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aMR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMU" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMV" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMX" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aMZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNb" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNg" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNh" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"aNj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_7) +"aNk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm7"; + name = "Room 7 (Holo)" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_7) +"aNl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aNm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aNn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm8"; + name = "Room 8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_8) +"aNo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aNp" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aNq" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aNr" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aNs" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_8) +"aNt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_8) +"aNu" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_8) +"aNv" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/rnd/external) +"aNw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/rnd/external) +"aNx" = ( +/obj/machinery/camera/network/research, +/obj/machinery/floodlight, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/rnd/external) +"aNy" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet/crate, +/obj/random/cigarettes, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/research) +"aNz" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aNA" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aNB" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aNC" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aND" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNE" = ( +/turf/simulated/wall, +/area/engineering/atmos) +"aNF" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNH" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNI" = ( +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNJ" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNK" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNM" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNN" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNO" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aNQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aNR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aNS" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_6) +"aNT" = ( +/obj/item/stack/material/steel, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aNU" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aNV" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aNW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNY" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aNZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aOa" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOc" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Port to Isolation" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOe" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOf" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOh" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOi" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOj" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_5) +"aOk" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_5/holo) +"aOl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/computer/HolodeckControl/holodorm/five, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"aOm" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"aOn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aOo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aOp" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOq" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 26 + }, +/obj/random/carp_plushie, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOr" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOs" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOt" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOu" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_6) +"aOv" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_6) +"aOw" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/gas_storage) +"aOx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOy" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOD" = ( +/obj/machinery/atmospherics/omni/mixer{ + name = "Air Mixer"; + tag_north = 2; + tag_south = 1; + tag_south_con = 0.79; + tag_west = 1; + tag_west_con = 0.21 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOE" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOF" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_5/holo) +"aOG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"aOH" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm5"; + name = "Room 5 Lock"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"aOI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aOJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aOK" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm6"; + name = "Room 6 Lock"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aON" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOO" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aOP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_6) +"aOQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_6) +"aOR" = ( +/turf/simulated/wall/r_wall, +/area/engineering/atmos/processing) +"aOS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aOT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/tether{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aOU" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aOX" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aOY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"aOZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_5) +"aPa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm5"; + name = "Room 5 (Holo)" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_5) +"aPb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aPc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aPd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm6"; + name = "Room 6" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_6) +"aPe" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aPf" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aPg" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aPh" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/reddouble, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aPi" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_6) +"aPj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_6) +"aPk" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_6) +"aPl" = ( +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPn" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/super{ + dir = 1; + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPq" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPw" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 8; + name = "Waste Purge Valve"; + target_pressure = 4500 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPA" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPC" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPD" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPF" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aPG" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aPH" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aPI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aPJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aPK" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_4) +"aPL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPS" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPT" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aPU" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/on{ + name = "Waste Compresser" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aPZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQa" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aQb" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_3) +"aQc" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_3/holo) +"aQd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/computer/HolodeckControl/holodorm/three, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"aQe" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"aQf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aQg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aQh" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQi" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQj" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQk" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQl" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQm" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_4) +"aQn" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_4) +"aQo" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aQp" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aQq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aQr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aQs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aQt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aQu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQC" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aQE" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/computer/supplycomp{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"aQF" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_3/holo) +"aQG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"aQH" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm3"; + name = "Room 3 Lock"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"aQI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aQJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aQK" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm4"; + name = "Room 4 Lock"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQO" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aQP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_4) +"aQQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_4) +"aQR" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aQS" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aQT" = ( +/obj/machinery/atmospherics/binary/algae_farm/filled{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aQU" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aQV" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aQW" = ( +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aQX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aQY" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aQZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRd" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRf" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRh" = ( +/obj/machinery/atmospherics/pipe/tank/nitrogen, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aRi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"aRj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_3) +"aRk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm3"; + name = "Room 3 (Holo)" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_3) +"aRl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aRm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm4"; + name = "Room 4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_4) +"aRn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aRo" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aRp" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aRq" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/yellowdouble, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aRr" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_4) +"aRs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_4) +"aRt" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_4) +"aRu" = ( +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aRv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aRw" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aRx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aRy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aRz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aRA" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRF" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRI" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRM" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aRN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aRO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aRP" = ( +/obj/machinery/atmospherics/unary/heater, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aRQ" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aRR" = ( +/obj/machinery/computer/supplycomp/control{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aRS" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aRW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/valve/digital, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aRZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSa" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "CO2 Filter"; + tag_east = 2; + tag_north = 1; + tag_south = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSc" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "Phoron Filter"; + tag_east = 2; + tag_south = 6; + tag_west = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSd" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "N2O Filter"; + tag_east = 2; + tag_south = 7; + tag_west = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSf" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "N2/O2 Filter"; + tag_east = 4; + tag_north = 3; + tag_south = 2; + tag_west = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aSh" = ( +/obj/machinery/atmospherics/pipe/tank/nitrogen{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aSi" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_1) +"aSj" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_1/holo) +"aSk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/computer/HolodeckControl/holodorm/one, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_1) +"aSl" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_1) +"aSm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aSn" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSo" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_2) +"aSp" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSq" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/random/action_figure, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSr" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSs" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSt" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSu" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_2) +"aSv" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_2) +"aSw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aSx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aSy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aSz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aSA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aSB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aSC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aSD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSE" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSF" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/black/bordercorner, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/black/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/black/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSQ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + target_pressure = 300 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aSR" = ( +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aSS" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/crew_quarters/sleep/Dorm_1/holo) +"aST" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_1) +"aSU" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm1"; + name = "Room 1 Lock"; + pixel_x = 26; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_1) +"aSV" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm2"; + name = "Room 2 Lock"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aSZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aTa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_2) +"aTb" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_2) +"aTc" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aTd" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aTe" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aTf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/processing) +"aTg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/processing) +"aTh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTk" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTl" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTm" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTo" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTp" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTq" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTs" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTt" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTu" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aTv" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/pipedispenser, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTw" = ( +/obj/item/clothing/head/soft/rainbow, +/obj/item/clothing/shoes/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/gloves/rainbow, +/obj/item/clothing/suit/storage/seromi/cloak/standard/rainbow, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"aTx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_1) +"aTy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_1) +"aTz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm1"; + name = "Room 1 (Holo)" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_1) +"aTA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aTB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/loadout/loadout_misc, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aTC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aTD" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aTE" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aTF" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/orangedouble, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aTG" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/Dorm_2) +"aTH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/Dorm_2) +"aTI" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_2) +"aTJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aTN" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTO" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 8; + start_pressure = 3039.75 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTP" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTQ" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 8; + start_pressure = 1215.9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTR" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTS" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ + dir = 8; + start_pressure = 1519.88 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTT" = ( +/obj/machinery/conveyor_switch{ + id = "surfacecargo"; + name = "Surface Cargo Delivery conveyor switch"; + pixel_x = -10; + pixel_y = 14 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aTU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aTV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aTW" = ( +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aTX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aTY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"aTZ" = ( +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aUa" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aUb" = ( +/turf/simulated/wall, +/area/crew_quarters/showers) +"aUc" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/structure/undies_wardrobe, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/item/weapon/towel/random, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/item/device/communicator, +/obj/item/device/communicator, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aUl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aUm" = ( +/turf/simulated/wall, +/area/crew_quarters/visitor_laundry) +"aUn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 9 + }, +/obj/structure/closet/emcloset, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/gear_painter, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + dir = 10 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/crew_quarters/visitor_laundry) +"aUr" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + id_tag = null; + name = "Laundry" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor, +/area/crew_quarters/visitor_laundry) +"aUs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUu" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUv" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUw" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUx" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUy" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUz" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUA" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUB" = ( +/obj/machinery/power/apc/super{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUC" = ( +/turf/simulated/wall/r_wall, +/area/engineering/atmos_intake) +"aUD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/atmos_intake) +"aUE" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/mask/smokable/cigarette/joint{ + desc = "Ever been to orbit?" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aUF" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aUG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/clothing/head/soft/purple, +/obj/machinery/vending/wallmed1/public{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aUO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aUP" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUR" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aUS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aUT" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/lower/atmos) +"aUU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/table/woodentable, +/obj/machinery/light_construct, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aUV" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aUW" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUX" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aUY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aUZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/item/weapon/bikehorn/rubberducky, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aVc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aVd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVf" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVh" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aVi" = ( +/obj/structure/bed/chair/comfy/black, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/visitor_laundry) +"aVk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aVl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aVm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aVn" = ( +/turf/simulated/wall, +/area/maintenance/lower/atmos) +"aVo" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aVp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aVq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aVr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aVs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aVt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aVw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aVz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVC" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVD" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVE" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "atmos_intake" + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aVF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aVG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aVH" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/structure/table, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"aVI" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aVJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aVK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/bathrobe, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/structure/table/rack, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aVN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aVO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aVP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVS" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/grey/bordercorner, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVT" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aVU" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + frequency = 1441; + id = "atmos_out"; + use_power = 1 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aVV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aVW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aVX" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/double, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aVY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aVZ" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWa" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWc" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWd" = ( +/obj/structure/table/borosilicate, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWe" = ( +/obj/structure/table/borosilicate, +/obj/structure/dancepole, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/bathrobe, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aWj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aWk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/random/soap, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aWl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aWm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aWn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/visitor_laundry) +"aWo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/machinery/vending/loadout/costume{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aWr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"aWs" = ( +/obj/structure/closet, +/obj/random/maintenance/engineering, +/obj/random/junk, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aWt" = ( +/obj/structure/table/rack, +/obj/random/maintenance/engineering, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aWu" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aWv" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aWw" = ( +/obj/structure/table, +/obj/item/stack/material/wood{ + amount = 10 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWx" = ( +/obj/structure/closet, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/junk, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aWy" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aWz" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWA" = ( +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWB" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/showers) +"aWH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/bathrobe, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aWI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/light, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aWJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/random/soap, +/obj/random/soap, +/turf/simulated/floor/tiled, +/area/crew_quarters/showers) +"aWK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aWL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aWM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/machinery/vending/fitness{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/machinery/vending/cola{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWO" = ( +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aWP" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aWQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWR" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aWS" = ( +/obj/structure/table, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWT" = ( +/obj/structure/table/bench/padded, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aWU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/maintenance/lower/atmos) +"aWV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_lodging) +"aWX" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + dir = 9 + }, +/obj/machinery/vending/nifsoft_shop{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aWZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aXa" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/structure/table/standard, +/obj/item/weapon/storage/laundry_basket, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/grey/bordercorner2, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aXb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aXc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 6 + }, +/obj/structure/closet/crate, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aXd" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/engineering/atmos_intake) +"aXe" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXf" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aXg" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/metal/mait{ + name = "Maintenance Access" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXi" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXj" = ( +/obj/machinery/button/holosign{ + id = "maintbar"; + pixel_x = -24 + }, +/obj/structure/table, +/obj/item/stack/material/wood{ + amount = 10 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXk" = ( +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aXl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/wood, +/area/maintenance/lower/atmos) +"aXn" = ( +/obj/random/junk, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aXr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXt" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXw" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXy" = ( +/obj/random/cash, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXz" = ( +/turf/simulated/wall{ + can_open = 1 + }, +/area/maintenance/lower/atmos) +"aXA" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXI" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/metal/mait{ + dir = 1; + name = "Maintenance Access" + }, +/turf/simulated/floor/wood, +/area/maintenance/lower/atmos) +"aXJ" = ( +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/rust, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXP" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lower/atmos) +"aXQ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore/office) +"aXR" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/masks, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXS" = ( +/obj/machinery/door/window/southleft, +/obj/effect/decal/cleanable/vomit, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aXX" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/steel, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aXY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/vending/cigarette{ + dir = 8 + }, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYd" = ( +/turf/simulated/wall, +/area/vacant/vacant_bar) +"aYe" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/maintDorm3) +"aYf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + id_tag = "maintdorm3"; + name = "Room 3" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/crew_quarters/sleep/maintDorm3) +"aYg" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/maintDorm2) +"aYh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + id_tag = "maintdorm2"; + name = "Room 2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/crew_quarters/sleep/maintDorm2) +"aYi" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/maintDorm1) +"aYj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + id_tag = "maintdorm1"; + name = "Room 1" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/crew_quarters/sleep/maintDorm1) +"aYk" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aYm" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aYo" = ( +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYp" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYr" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/vacant/vacant_bar) +"aYs" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/vacant/vacant_bar) +"aYu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/button/remote/airlock{ + id = "maintdorm3"; + name = "Room 3 Lock"; + pixel_x = 23; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aYv" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm3) +"aYx" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aYz" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aYB" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aYE" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aYF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aYG" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aYI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aYL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aYM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aYN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/vacant/vacant_bar) +"aYO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/vacant/vacant_bar) +"aYR" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm3) +"aYT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm3) +"aYY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm2) +"aZb" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aZc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aZg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"aZh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/vacant/vacant_bar) +"aZi" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/vacant/vacant_bar) +"aZj" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aZl" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_construct/small, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm3) +"aZm" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/maintDorm3) +"aZo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aZp" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_construct/small, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/maintDorm2) +"aZq" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/maintDorm2) +"aZu" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aZv" = ( +/obj/structure/stairs/south, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aZw" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aZz" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aZA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aZC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"aZD" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"aZI" = ( +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aZK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"aZL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_construct{ + dir = 1 + }, +/obj/structure/table, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aZN" = ( +/obj/structure/table, +/obj/item/stack/material/wood{ + amount = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"aZO" = ( +/obj/structure/closet, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aZP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_construct{ + dir = 1 + }, +/obj/structure/table, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aZQ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"aZR" = ( +/obj/structure/closet, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aZS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_construct{ + dir = 1 + }, +/obj/random/junk, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"aZU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/fancy/markers, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"aZX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"aZY" = ( +/obj/machinery/light, +/obj/structure/ladder/up, +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"aZZ" = ( +/obj/structure/symbol/sa, +/turf/simulated/wall, +/area/vacant/vacant_bar) +"baa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"bab" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"bad" = ( +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"bah" = ( +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"baj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"bal" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"bao" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"baq" = ( +/obj/structure/sign/warning, +/turf/simulated/wall, +/area/tether/surfacebase/outside/outside1) +"bar" = ( +/obj/structure/sign/xenobio, +/turf/simulated/wall, +/area/tether/surfacebase/outside/outside1) +"bas" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"bat" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/vacant/vacant_bar) +"bau" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar) +"baA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"baB" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/iandouble, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"baC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"baD" = ( +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"baE" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/mimedouble, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"baF" = ( +/obj/structure/stairs/east, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside1) +"baG" = ( +/obj/structure/stairs/west, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside1) +"baK" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm3) +"baM" = ( +/obj/item/stack/material/steel, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm2) +"baO" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/maintDorm1) +"baP" = ( +/obj/item/stack/material/steel, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"baQ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"baR" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm3) +"baS" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm2) +"baT" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/maintDorm1) +"baU" = ( +/turf/simulated/mineral/floor/virgo3b, +/area/tether/surfacebase/outside/outside1) +"baV" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/tether/surfacebase/outside/outside1) +"baW" = ( +/obj/structure/sign/warning/caution{ + desc = "No unarmed personnel beyond this point."; + name = "\improper DANGER - WILDERNESS" + }, +/turf/unsimulated/wall/planetary/virgo3b, +/area/tether/surfacebase/outside/outside1) +"baX" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Cargo Shop" + }, +/obj/machinery/door/firedoor/multi_tile, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cargostore) +"baY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "surfcargooffice"; + layer = 3.3; + name = "Cargo Office Shutters" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/cargostore/office) +"baZ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bba" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "surfcargooffice"; + layer = 3.3; + name = "Cargo Office Shutters" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/tether/surfacebase/cargostore/office) +"bbb" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Mental Health and North EVA" + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/tether/surfacebase/lowernorthhall) +"bbc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbd" = ( +/obj/random/cash, +/obj/random/contraband, +/obj/random/mre, +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbe" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbf" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/tether/surfacebase/lowernorthhall) +"bbg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbi" = ( +/obj/machinery/door/airlock/engineering{ + name = "CargoShop Substation"; + req_one_access = list(11,24,50) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbj" = ( +/turf/simulated/wall, +/area/maintenance/substation/SurfMedsubstation) +"bbk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbo" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/external) +"bbp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/tether, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbr" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Medbay Substation"; + req_one_access = list(11,24,5) + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbs" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - CargoShop"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbv" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbw" = ( +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbx" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "SurfMed Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bby" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/engineering{ + name = "Medbay Substation"; + req_one_access = list(11,24,5) + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - CargoShop Subgrid"; + name_tag = "CargoShop Subgrid" + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbD" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "CargoShop Substation"; + req_one_access = list(11,24,50) + }, +/turf/simulated/floor, +/area/maintenance/substation/cargostoresubstation) +"bbG" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/hallway/lower/first_west) +"bbH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/SurfMedsubstation) +"bbJ" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - SurfMed"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbL" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbM" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/SurfMedsubstation) +"bbN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbQ" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/tether/elevator) +"bbR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"bbS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbU" = ( +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - SurfMed Subgrid"; + name_tag = "SurfMed Subgrid" + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbW" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbX" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bbY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor, +/area/maintenance/substation/SurfMedsubstation) +"bbZ" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"bca" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"bcc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/medbay, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"bcd" = ( +/turf/simulated/mineral, +/area/maintenance/lower/xenoflora) +"bcf" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/masks, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/lime/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"bch" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bci" = ( +/obj/structure/disposalpipe/segment, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bcj" = ( +/obj/machinery/door/airlock/glass{ + name = "Dressing Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcl" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcm" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcn" = ( +/obj/structure/closet/crate, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/cigarettes, +/obj/random/coin, +/obj/random/drinkbottle, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcp" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"bcq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/engi{ + id_tag = "elevescapel"; + name = "Elevator Maintenance" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "elevescapel"; + name = "elevator escape button"; + pixel_y = 32 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'CRUSH WARNING'."; + name = "\improper CRUSH WARNING"; + pixel_y = 32 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcv" = ( +/obj/structure/disposalpipe/up{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcz" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcA" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcC" = ( +/obj/structure/closet/crate, +/obj/random/unidentified_medicine, +/obj/random/firstaid, +/obj/random/drinkbottle, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcD" = ( +/obj/structure/closet/wardrobe/black, +/obj/random/maintenance/clean, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcE" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcG" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcH" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcK" = ( +/obj/structure/closet/wardrobe/xenos, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcL" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/light/small, +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 6 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) +"bcQ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "brig_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westleft{ + req_access = list(2) + }, +/obj/machinery/door/window/brigdoor/eastright{ + req_access = list(2) + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"bcS" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/cargo, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bcT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "rnd_s_airlock_pump" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled, +/area/rnd/external) +"bcV" = ( +/obj/effect/landmark{ + name = "droppod_landing" + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside1) +"bcY" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bcZ" = ( +/obj/machinery/computer/HolodeckControl{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bda" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdb" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/holodeck_control) +"bdc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bdd" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bde" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bdg" = ( +/obj/machinery/door/airlock{ + name = "Holodeck" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/holodeck_control) +"bdh" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdi" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdj" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bdk" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck" + }, +/turf/simulated/floor, +/area/holodeck_control) +"bdl" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdn" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bdo" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdp" = ( +/obj/machinery/button/windowtint{ + id = "holodeck"; + pixel_x = 35; + range = 14; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + pixel_x = 22; + report_danger_level = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdq" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/item/weapon/paper{ + info = "Brusies sustained in the holodeck can be healed simply by sleeping."; + name = "Holodeck Disclaimer" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bds" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bdt" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Holodeck" + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/holodeck_control) +"bdw" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdz" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/structure/sink/kitchen{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/holodeck_control) +"bdA" = ( +/obj/machinery/door/airlock/glass{ + name = "Holodeck" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/holodeck_control) +"bdB" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence) +"bdC" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdE" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdH" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdJ" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bdN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"bqI" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/brig/storage) +"byn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"byP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bzb" = ( +/obj/machinery/camera/network/security{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"bHK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"bHR" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bJz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"bMs" = ( +/obj/machinery/door/airlock/glass_external/public, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/tram) +"bMP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bOd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"bPt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bSx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/landmark/tram, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"bZC" = ( +/turf/simulated/floor/looking_glass, +/area/looking_glass/lg_1) +"ccA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"cdO" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"cpp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + id_tag = null; + name = "Laundry" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor, +/area/crew_quarters/locker/laundry_arrival) +"cqZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"csb" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"csd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"cwS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"cAR" = ( +/turf/simulated/floor/looking_glass/center, +/area/looking_glass/lg_1) +"cGJ" = ( +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"cGU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"cHW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"cIh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"cOq" = ( +/obj/random/cutout, +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) +"cPs" = ( +/obj/machinery/computer/looking_glass{ + lg_id = "one" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/looking_glass/lg_1) +"cPX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"cWS" = ( +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"cXW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"ddU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"dfJ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/bag/trash, +/obj/item/weapon/storage/bag/trash, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"diq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"dju" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"dlB" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/donkpockets, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"doa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"dxY" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/tank/emergency/oxygen/engi, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/lowernorthhall) +"dyd" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"dCc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/northern_star{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"dCs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"dFD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"dJZ" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"dMu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"dPC" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"dYd" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/cargostore/warehouse) +"dZW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"eby" = ( +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8; + id = "Cell 2"; + name = "Cell 2"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"eeo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"efV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"eku" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/target_stake, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"ekC" = ( +/obj/structure/table/steel, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"eow" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/atm{ + pixel_x = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"epD" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"erc" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/lowernorthhall) +"evF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"exW" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"ezn" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"eAd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"eBd" = ( +/obj/machinery/cryopod, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"eDh" = ( +/obj/machinery/door/airlock{ + name = "Brig Restroom" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig/bathroom) +"eEn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"eFp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/gun/energy/laser/practice, +/obj/item/weapon/gun/projectile/shotgun/pump/rifle/practice, +/obj/item/ammo_magazine/clip/c762/practice, +/obj/item/ammo_magazine/clip/c762/practice, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"eGp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"eJQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "brig_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/brig) +"eQz" = ( +/turf/simulated/floor, +/area/maintenance/lower/mining_eva) +"eQT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"eUS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/computer/timeclock/premade/west, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"fcT" = ( +/turf/simulated/floor/looking_glass{ + dir = 8 + }, +/area/looking_glass/lg_1) +"ffD" = ( +/turf/simulated/floor/looking_glass{ + dir = 10 + }, +/area/looking_glass/lg_1) +"fmY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"fpU" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden/green, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"fqa" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/security/brig/bathroom) +"frz" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"fvH" = ( +/obj/machinery/door/airlock{ + name = "Brig Restroom" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"fyp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"fAW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"fCk" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ + dir = 4 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"fDx" = ( +/obj/machinery/door/airlock/maintenance/sec{ + name = "Riot Control"; + req_one_access = list(63,24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"fLB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"fOy" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower/security, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig/bathroom) +"fPf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"geO" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"ghg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ghr" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"gjD" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"glc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"glH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"gnt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"gnW" = ( +/obj/machinery/door/airlock/glass_security{ + id_tag = "briginner"; + name = "Brig"; + req_access = list(2); + req_one_access = newlist() + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"goJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"gud" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/toy/stickhorse, +/obj/machinery/camera/network/security{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/weapon/beach_ball/holoball, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"guV" = ( +/obj/structure/closet, +/obj/random/drinkbottle, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/vacant_site) +"gxa" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"gxM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"gAn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"gCa" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/security/lowerhall) +"gJK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"gVe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"gYx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"gZN" = ( +/turf/simulated/floor/looking_glass{ + dir = 9 + }, +/area/looking_glass/lg_1) +"hco" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"hdh" = ( +/obj/machinery/door/airlock/security{ + name = "The Hole"; + req_access = list(2) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"hmx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/machinery/holoposter{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"hoH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"hps" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"hpB" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "northciv_airlock_inner"; + locked = 1 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "northciv_airlock"; + pixel_x = 25; + pixel_y = -8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/lowernortheva) +"huE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"hzx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"hAe" = ( +/turf/simulated/floor/looking_glass{ + dir = 5 + }, +/area/looking_glass/lg_1) +"hDd" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Firing Range"; + req_access = list(1) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"hFq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"hFG" = ( +/obj/effect/landmark/looking_glass, +/turf/simulated/floor/looking_glass/center, +/area/looking_glass/lg_1) +"hMu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"hOA" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "Cell 2"; + name = "Cell 2 Door"; + pixel_x = 28; + req_access = list(1,2) + }, +/obj/machinery/door_timer/cell_3{ + id = "Cell 2"; + name = "Cell 2"; + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"hPU" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"hQg" = ( +/obj/machinery/vending/hydronutrients/brig{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"hQw" = ( +/obj/machinery/atmospherics/unary/outlet_injector, +/obj/effect/floor_decal/corner/lightorange, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"hQP" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"hTw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"hTz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"hTQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "brig_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/brig) +"hYh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/map_helper/airlock/door/int_door, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "northciv_airlock_inner"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/lowernortheva) +"icB" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"iee" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"igw" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"ilZ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"imW" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"iqO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"iti" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"iue" = ( +/turf/simulated/floor/looking_glass{ + dir = 1 + }, +/area/looking_glass/lg_1) +"iwE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"ixF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"iEk" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "Cell 1"; + name = "Cell 1 Door"; + pixel_x = 28; + req_access = list(1,2) + }, +/obj/machinery/door_timer/cell_3{ + id = "Cell 1"; + name = "Cell 1"; + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"iKy" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/lower/mining_eva) +"iUF" = ( +/obj/structure/table/steel, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"iWx" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"jbU" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"jio" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"jkt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"jnj" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"jva" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"jzW" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"jCD" = ( +/obj/machinery/door/airlock/glass_security{ + id_tag = "briginner"; + name = "Brig"; + req_access = list(2); + req_one_access = newlist() + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"jDg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"jDI" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"jIc" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"jKD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"jPk" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"jQL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/medbay, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"jSU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/mauve/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"jTQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"kbZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"kdi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"kfT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"kgk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"kjX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"klO" = ( +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"kmb" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"kuB" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"kwN" = ( +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"kxx" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"kyE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"kAm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"kAG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"kCz" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"kEs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"kKl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"kMG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Locker Room" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"kPT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"kUN" = ( +/obj/machinery/camera/network/security{ + dir = 5 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"laR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"lbu" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"ldI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"lhM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + id = "Cell 2"; + name = "Cell 2" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"loc" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"loj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"lpK" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"lry" = ( +/obj/structure/catwalk, +/obj/structure/closet, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/drinkbottle, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"lwL" = ( +/obj/machinery/door/airlock/glass_security{ + id_tag = "brigouter"; + name = "Brig"; + req_access = list(2); + req_one_access = newlist() + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"lwN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"lxo" = ( +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"lxU" = ( +/obj/machinery/holoposter, +/turf/simulated/wall, +/area/hallway/lower/first_west) +"lDW" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"lEg" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"lIj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"lLD" = ( +/obj/machinery/camera/network/security{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"lMf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"lMK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) +"lNp" = ( +/turf/simulated/floor/looking_glass/optional{ + dir = 4 + }, +/area/looking_glass/lg_1) +"lNt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"lQu" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/table/steel, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"lQQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"lSW" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/blanks{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/storage/box/blanks{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/ammo_magazine/clip/c762/practice, +/obj/item/ammo_magazine/clip/c762/practice, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m9mmt/practice, +/obj/item/ammo_magazine/m9mmt/practice, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"lTn" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/gasstorage) +"lTz" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"lUk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"lWT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"mhu" = ( +/obj/structure/closet/secure_closet/brig, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"mon" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"mrO" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"mrR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"mvM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"mAR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"mCe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"mGH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"mGP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"mHm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"mHO" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"mIw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"mOz" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/computer/cryopod{ + name = "asset retention console"; + pixel_y = -30 + }, +/obj/effect/landmark/tram, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"mRF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/tether/surfacebase/tram) +"mRY" = ( +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"mSz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"mTw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -22 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"mYf" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "surfbriglockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/tether/surfacebase/security/brig) +"mYO" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"mZO" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"naC" = ( +/turf/simulated/wall/r_wall, +/area/medical/virologyisolation) +"ndH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"neZ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"nis" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"niz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"njE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"nlo" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"nmf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"nmD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"npK" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"nsp" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ntZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"nvD" = ( +/obj/machinery/seed_storage/brig{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/obj/machinery/camera/network/security{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"nwH" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"nBm" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"nBT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"nDD" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"nID" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"nKz" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "atrium" + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/lower/vacant_site) +"nOB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"ocx" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + id = "Cell 1"; + name = "Cell 1" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"odn" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/lowerhall) +"ofS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"ofW" = ( +/obj/structure/disposalpipe/tagger{ + dir = 2; + name = "package tagger - Void"; + sort_tag = "Void" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"ohi" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/research) +"oib" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"okO" = ( +/obj/machinery/door/airlock{ + name = "Visitation"; + req_one_access = list(38,63) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"oli" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"oox" = ( +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"orf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/security{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"orF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/public_garden_one) +"osh" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ovG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"owv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"ozx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"oKY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"oQm" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"oRz" = ( +/turf/simulated/floor/looking_glass{ + dir = 4 + }, +/area/looking_glass/lg_1) +"oTK" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"oVq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"oVr" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"paY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"pdo" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) +"pea" = ( +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"pjs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"plW" = ( +/obj/machinery/computer/cryopod{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"pmr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"pmV" = ( +/obj/machinery/atmospherics/unary/outlet_injector, +/obj/effect/floor_decal/corner/lightorange{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"ptv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"pyD" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Mining Maintenance Access" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/tether/surfacebase/north_stairs_one) +"pCj" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/security/brig) +"pKE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"pZb" = ( +/obj/structure/closet/wardrobe/orange, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"qfJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/landmark/tram, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"qhq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"qjE" = ( +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"qmc" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"qor" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"qoK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"qsl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"qwm" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"qwV" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/brig) +"qDR" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/wall, +/area/maintenance/substation/cargostoresubstation) +"qJT" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/gglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/gglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -28 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"qKn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Dorms & Cafe" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/tether/surfacebase/surface_one_hall) +"qOa" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"qOA" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"qPR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 26 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"qRI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"qWk" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker/laundry_arrival) +"qWW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"qYs" = ( +/obj/machinery/door/airlock/maintenance/sec{ + name = "Riot Control"; + req_one_access = list(63,24) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"raS" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/tram, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"rww" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"rxq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"rxG" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"rzZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"rBG" = ( +/obj/structure/closet, +/obj/item/weapon/material/minihoe, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"rDJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/weaponsrange) +"rHb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"rOh" = ( +/obj/machinery/disposal, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"rQe" = ( +/obj/structure/table/steel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"rRC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"rSG" = ( +/obj/machinery/light/small, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"rVb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"rVW" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"rYl" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"rYL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/cryopod/robot/door/tram, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether/surfacebase/tram) +"rZZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"sbD" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) +"scf" = ( +/obj/effect/floor_decal/corner/lightorange, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"svZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"sxc" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"sya" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) +"szT" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"sEz" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"sHO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"sIO" = ( +/turf/simulated/floor/looking_glass{ + dir = 6 + }, +/area/looking_glass/lg_1) +"sLi" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"sQB" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"sVX" = ( +/obj/structure/table/steel, +/obj/item/weapon/material/twohanded/fireaxe/foam, +/obj/item/toy/nanotrasenballoon, +/obj/item/weapon/deck/cards, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"tak" = ( +/obj/structure/table/steel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"tdh" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"tiJ" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"trV" = ( +/turf/simulated/wall/r_wall, +/area/tether/surfacebase/security/brig/storage) +"tvk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"tvA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"txZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"tCV" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"tEo" = ( +/obj/random/trash_pile, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"tLx" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/tram, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) +"tMD" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"tMP" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"tNJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"tQH" = ( +/obj/machinery/camera/network/security{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"tRA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"tRJ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "lg_1"; + name = "Looking Glass Lock"; + pixel_x = 28; + pixel_y = 28; + specialfunctions = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/looking_glass/lg_1) +"tRX" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"tTC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"tVd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"ubK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"ucv" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + name = "Solitary Confinement"; + req_access = list(2) + }, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"uge" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"uiK" = ( +/turf/simulated/wall, +/area/tether/surfacebase/security/weaponsrange) +"uqH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/closet, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/cargo, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"uuu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"uxF" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Locker Room" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"uzs" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"uAv" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"uAA" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/mauve/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"uDQ" = ( +/obj/machinery/button/remote/airlock{ + id = "brigouter"; + name = "Outer Brig Doors"; + pixel_x = 24; + pixel_y = -4; + req_access = list(2) + }, +/obj/machinery/button/remote/airlock{ + id = "briginner"; + name = "Inner Brig Doors"; + pixel_x = 34; + pixel_y = -4; + req_access = list(2) + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"uEK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"uFh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/public_garden_maintenence) +"uFs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"uFS" = ( +/obj/machinery/door/airlock/security{ + name = "Brig Recreation Storage"; + req_one_access = list(63) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"uHS" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"uKS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"uOe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"uOA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"uUP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/tether/surfacebase/surface_one_hall) +"vfy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"vhI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"vih" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"vlJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/research, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"vCb" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"vDb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"vHP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"vHW" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"vRL" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"vSS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"vTn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 10 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor, +/area/tether/surfacebase/security/gasstorage) +"vVr" = ( +/obj/machinery/computer/arcade/orion_trail, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"waR" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/weaponsrange) +"wjq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"wpZ" = ( +/obj/machinery/door/airlock/glass_security{ + id_tag = "brigouter"; + name = "Brig"; + req_access = list(2); + req_one_access = newlist() + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"wtD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"wwm" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/lowerhall) +"wwo" = ( +/obj/machinery/door/airlock{ + id_tag = "visitdoor"; + name = "Visitation Area"; + req_access = list(1) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"wxa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"wxV" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"wzA" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"wQS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"wRe" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"wUW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"wVB" = ( +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8; + id = "Cell 1"; + name = "Cell 1"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"wVI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"wXW" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tether/surfacebase/tram; + base_turf = /turf/simulated/floor/tiled/techfloor/grid; + docking_controller = null; + landmark_tag = "escape_station"; + name = "Tether Surface Base" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tether/surfacebase/tram) +"xdV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"xgQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) +"xnn" = ( +/obj/machinery/holoposter, +/turf/simulated/wall, +/area/crew_quarters/visitor_laundry) +"xpP" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"xtS" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/tether/surfacebase/security/brig/bathroom) +"xzn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"xAT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"xFG" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig/storage) +"xOH" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/looking_glass/lg_1) +"xVX" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhall) +"xYx" = ( +/obj/structure/table/steel, +/obj/machinery/microwave, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"yaU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) +"ybc" = ( +/obj/structure/table/steel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/brig) +"ygY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/hallway) + +(1,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +asP +asQ +asQ +asQ +asQ +asQ +asR +asQ +asQ +asR +asQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(2,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGD +aaa +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(3,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aaa +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aHL +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(4,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aHo +aad +aad +aad +aad +aad +aad +aad +aad +aHL +aad +aad +aHo +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(5,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(6,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGF +aad +aad +aad +aad +aad +aad +aad +aad +aad +aHL +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(7,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGG +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(8,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGG +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aHL +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(9,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGG +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(10,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGG +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aHL +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(11,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGG +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(12,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGG +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(13,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGH +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(14,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(15,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(16,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(17,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(18,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(19,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(20,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +akH +aad +aad +aad +aad +aad +aad +aad +aad +akH +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(21,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajO +ajO +ajV +ajV +ajV +ajV +ajV +ajV +ajV +ajV +ajO +ajO +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(22,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajO +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +adK +aeo +aeo +aeo +aeo +aeo +adK +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +auK +auK +auK +auK +auK +auK +aEQ +aad +aad +aGE +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(23,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +adK +aep +adK +aeV +aeo +afq +adK +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +aAs +aBu +aCc +aCc +aCc +aCc +aER +aib +aib +aGI +aad +aad +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(24,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +adK +aep +aep +aeo +aeo +aeo +adK +aah +aah +aah +aah +aah +aah +aah +aoq +aoq +aoq +aoq +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +aaT +auK +auK +auK +auK +auK +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(25,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +adK +adK +adK +adK +adK +adK +adK +ajS +aah +aah +aah +aah +aah +aah +aoq +aoq +aoq +aoq +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(26,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +gZN +fcT +fcT +fcT +fcT +fcT +ffD +ajS +aah +aah +aah +aah +aah +aah +aor +aoV +aoV +aqm +aci +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(27,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +iue +cAR +cAR +cAR +cAR +cAR +bZC +ajS +aah +aah +aah +aah +aiy +aiy +aiy +aoW +apH +aiy +aqT +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +abB +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(28,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +iue +cAR +cAR +cAR +cAR +cAR +bZC +ajS +aah +aah +aah +aah +aiy +aoe +aos +aoX +apI +aqn +aqT +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(29,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +iue +cAR +cAR +hFG +cAR +cAR +bZC +ajS +aah +aah +aah +aah +aiy +aof +aot +aoY +apJ +aqo +aqT +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +auK +aAl +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baq +aad +aad +aad +baq +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(30,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajN +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +iue +cAR +cAR +cAR +cAR +cAR +bZC +ajS +aah +aah +aah +aah +aiy +aiy +aiy +aoZ +apK +aiy +aqT +aah +aah +aah +aah +aah +aah +aah +aah +agv +agv +agv +agv +agv +agv +agv +azs +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bar +aad +aad +aad +bar +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(31,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajO +akL +akL +akL +akL +akL +akL +akL +akL +akL +akL +ajO +iue +cAR +lNp +lNp +lNp +cAR +bZC +ajS +aah +agU +agU +agU +agU +agU +aou +apa +apL +aqp +aqU +aah +aah +aah +aah +aah +aah +aah +aah +agv +agL +agW +ahH +adV +aip +aiJ +azs +aaT +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baq +baF +baF +baF +baq +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(32,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +ajO +akO +ajO +bdg +bdk +bdk +bdk +bdk +bdv +ajO +bdz +ajO +hAe +oRz +cPs +xOH +tRJ +oRz +sIO +ajS +aah +agU +ahi +alE +aiz +ajo +aov +apb +apM +aqq +aqU +aah +aah +aah +aah +aah +aah +aah +aah +agv +agO +agZ +ahO +aij +ais +aiK +azs +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adK +adK +adK +adK +adK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(33,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +ajO +ajO +ajO +bdh +bdl +bcZ +bdq +bdt +bdw +ajO +ajO +ajS +ajS +ajS +ajS +ajS +atd +ajS +ajS +ajS +aah +agU +ahj +ahD +aiA +agU +agU +apc +apN +agU +aqU +aah +aah +aah +aah +aah +aah +aah +aah +agv +agR +ahf +ahP +ahP +aiH +aiL +azs +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(34,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +ajO +bda +bdi +bdm +bdo +bdp +bdu +bdx +bdy +bdA +bdC +akU +ali +sbD +abK +orF +ajS +aah +aah +aah +agU +akm +ahE +apm +agU +aow +apd +apO +aqr +aqU +acs +acs +acs +acs +asz +asz +asz +asz +asz +agV +ahh +ahQ +ain +aiI +aiM +azs +aAu +auK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(35,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +ajO +bdb +ajO +ajO +ajO +ajO +ajO +ajO +ajO +ajO +bdD +akM +alj +alw +ajS +ajS +ajS +aah +aah +aah +agU +agU +anw +anM +agU +aox +ape +apP +aqs +aqV +arn +arE +arP +aqV +agk +agp +atD +atD +asz +agv +aht +agv +agv +agv +agv +azs +aAx +auK +aBv +aBv +aBv +aBv +aBv +aBv +aBv +aBv +aBv +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(36,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +ajL +bdc +ajL +aah +aah +aah +aah +ajS +ajS +akD +bdE +akN +akN +alx +alM +ajS +ajS +aah +aah +aah +aah +agU +agU +agU +agU +aoy +ape +apQ +aqt +aqV +aro +arF +arQ +aqV +asA +asW +asW +aug +agC +auY +avE +awl +awS +axA +ayr +azt +aAy +aBw +aCf +aCV +aCd +aDy +aES +ajB +aFY +aGd +aBv +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(37,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +ajL +ajL +bdd +ajS +ajS +ajS +ajS +ajS +ajS +akv +akE +bdF +bdJ +bdM +bdN +alN +ame +ajS +ajS +aah +aah +aah +aah +aah +aah +agU +aoz +ape +apP +aqu +aqV +arp +arF +arR +aqV +asB +asX +asX +agw +auE +abg +avF +awm +awT +axB +ays +ays +ays +acu +ake +akf +aDz +aEe +aET +aCe +cdO +glH +aBv +aah +aah +aah +aah +aKL +aKL +aKL +aKL +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(38,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +ajL +akV +bde +ajT +ajY +akb +akh +akk +akq +akw +akE +bdG +akW +akN +aly +alN +amf +amA +ajS +aah +aah +aah +aah +aah +aah +agU +aoA +apf +apR +aqv +aqV +arq +arG +arS +aqV +asC +ags +agt +auh +auE +aDr +avG +ahT +auK +aAj +abN +abN +abN +abN +abN +abN +abN +abN +abN +abN +ygY +aGX +aBv +aah +aah +aah +aah +aKL +auW +auW +aKL +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(39,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +ajL +akZ +ajM +ajT +ajY +akb +akh +akk +akr +akx +akE +bdH +akX +akN +aly +alN +amg +amB +ajS +aah +aah +aah +ahl +ahl +ahl +agU +aoB +apg +apS +aoB +aqV +arr +arH +arT +aqV +ahl +ahl +ahl +ahl +ahl +ava +avH +awn +auK +avh +abN +aeR +aeR +aji +agF +agP +aiQ +agD +aio +abN +xgQ +ofS +aBv +aah +aah +aah +aah +aKL +aLn +aLY +aKL +aah +aah +aah +aad +aad +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(40,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +ajL +akZ +abs +ajS +ajS +ajS +ajS +ajS +ajS +aky +akE +bdI +bdK +akN +aly +alN +amh +ajS +ajS +aah +aah +aah +ahl +ahG +aiD +ajp +aoC +aph +apT +aqw +aqW +ars +arI +arU +asj +asD +asY +atE +aui +auF +avb +avI +awo +auK +avh +abN +aeR +aeR +aeR +agF +agP +ahv +ahm +aiB +abN +lMf +aGX +aBv +aBv +aBv +aBv +aBv +aKL +aLo +bbo +aKL +aNv +aoq +aad +aad +aad +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(41,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +ajL +aLm +ajQ +aah +aah +aah +aah +aah +ajS +ajS +akF +akP +bdL +alk +alz +alO +ajS +ajS +aah +aah +aah +aah +ahl +afz +aiE +ajq +anx +anP +anx +anx +aqX +anx +anP +anx +ask +anx +asZ +anx +anx +anx +anx +acJ +awp +auK +avh +abN +aeR +aeR +aeR +agF +agP +ahw +aiq +aiB +abN +lwN +icB +aFI +aFJ +aFK +aJr +aJX +aKM +aLp +aMa +aMJ +aNw +aoq +aad +aad +aad +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +ano +ano +ano +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(42,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +ajL +akZ +abt +ajU +aki +aki +aki +akl +aah +ajS +ajS +akQ +ala +all +alA +ajS +ajS +aah +aah +aah +aah +aah +ahl +ahI +anN +aog +aoD +api +apU +aqx +aqY +aoD +arJ +arV +asl +asE +aoD +atF +auj +auG +avc +avJ +awq +auK +avh +abN +aeR +aeR +aeR +agG +aha +ahy +aiu +aiB +alS +vlJ +uAA +aHp +aHN +aIB +aJs +aJY +aKN +aLq +aMb +aMK +aNw +aoq +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(43,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +aah +ajL +bcY +bdn +bdj +bdn +bdn +bds +ajQ +aah +aah +ajS +ajS +lWT +alm +ajS +ajS +aah +aah +aah +aah +aah +aah +ahl +ahJ +anO +ajs +ahl +ahl +ahl +ahl +ahl +ahl +ahl +arW +asm +ahl +ahl +atG +auk +atH +auK +auK +auK +auK +axD +abN +aeR +aeR +aeR +agF +ahb +ahF +aih +aiv +alS +cIh +aGX +awn +awn +awn +anG +awn +aKL +aLr +bcU +aKL +aNx +aoq +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(44,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +akB +akB +akB +akB +akB +akB +akB +uiK +uiK +uiK +bcY +abu +kdi +uFh +ajL +ajS +alc +aln +ajS +aah +aah +aah +aah +aah +aah +aah +ahl +ahK +anP +ajt +ahl +apj +apj +apj +apj +apj +arK +apl +apo +apl +ata +atH +aul +auH +auK +avK +axI +awU +aAk +abN +aeR +aeR +agl +agN +ahd +ahY +aiw +aix +abN +ovG +jkt +awn +aBM +aIC +aCC +aJZ +aKL +aLs +aMd +aKL +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(45,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +eku +fPf +lIj +eGp +lIj +rxG +lxo +npK +qJT +uiK +ajM +aby +aki +akz +akG +akR +aeT +alf +akR +akR +akR +akR +akR +aah +aah +aah +ahl +ahL +anP +ajt +ahl +apk +apV +aqy +apl +apl +apl +apl +apl +apl +apl +atH +aum +auI +avd +avL +aws +abN +abN +abN +aeR +aeR +aeR +agF +ahe +ahF +aim +aiU +alT +ajd +aGX +awn +aHP +aID +aJv +aJZ +aKL +auW +auW +aKL +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(46,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +waR +dCs +waR +vhI +waR +nwH +eFp +bOd +lSW +uiK +ajM +bcY +bdn +bdn +bdB +akS +ald +alo +akR +akR +ami +amC +akR +akR +akR +akR +ahl +ahM +anP +aju +aoE +apl +apl +apl +apl +apl +apo +apl +aqy +apl +apl +atH +aun +auJ +ave +avM +aws +abN +abW +acp +afe +aeR +aeR +agG +aha +ahy +aiB +ajm +abN +kyE +aGX +adn +adn +adn +aCK +aKa +aKL +aKL +aKL +aKL +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(47,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +eku +uOA +pmr +gnt +mIw +kuB +pea +eEn +gjD +uiK +ajL +akl +aks +ajL +acj +akR +ale +alp +alr +alP +alr +alr +amS +amX +ana +ang +ans +any +anP +ajv +aoF +apX +apX +aqA +aqZ +apl +apl +apl +apl +apl +apl +atH +atH +atH +auK +avN +aws +abN +aiR +acp +afe +aeR +aeR +agF +agP +aik +aiF +akp +alS +ygY +aGX +adn +alY +adn +aCW +aKa +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(48,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +waR +vhI +waR +dCs +waR +tRX +eFp +kjX +dfJ +uiK +aah +akn +abE +jbU +akJ +akT +alg +alq +alB +alQ +amj +amD +amT +amY +anb +anh +ant +auZ +acT +adj +aoG +apn +apn +are +apl +apl +apl +apl +apl +apl +atb +apj +apj +auK +avf +awr +aws +abN +abN +abN +aeR +aeR +aeR +agF +agP +ahF +agx +alI +alU +aje +oli +adn +alZ +adn +adn +adn +adn +adn +adn +adn +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adK +adK +adK +adK +adK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(49,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +eku +rHb +lIj +dFD +lIj +dyd +klO +geO +rDJ +uiK +aah +abC +abF +abG +abF +akR +alh +als +akR +alR +ajz +amE +akR +akR +akR +akR +ahl +anz +anP +adk +aoE +apo +apo +apl +apl +aqy +apl +apl +apl +apl +apj +apj +apj +auK +avg +avP +awt +abN +acb +abN +aeR +aeR +ane +agF +agP +ail +aiG +alL +alS +ygY +hps +adn +ama +adn +amp +amv +amJ +amO +amO +adn +adn +adn +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baq +baG +baG +baG +baq +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(50,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +akB +akB +akB +akB +akB +akB +akB +akB +akB +akB +akB +hDd +uiK +gCa +gCa +gCa +gCa +lTn +lTn +lTn +qYs +lTn +akR +akR +akR +akR +aah +aah +aah +ahl +anA +anP +adu +ahl +app +apl +apl +apl +aqy +apl +apl +apl +asF +apj +apj +apj +auK +avh +abm +abm +abN +abN +abN +abN +abN +abN +abN +abN +abN +abN +alS +alS +gxM +tvA +alV +amb +alV +amr +amx +amK +amO +amO +and +alY +adn +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bar +aad +aad +aad +bar +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(51,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +bqI +pZb +rBG +mhu +xFG +bqI +txZ +uge +gCa +epD +epD +gCa +fCk +fCk +exW +bJz +lTn +aah +aah +aah +aah +aah +aah +aah +ahl +ahL +acV +adF +ahl +apj +apj +apj +apl +apl +apl +apl +apl +apj +apj +apj +apj +auK +avh +abm +abn +abn +abn +acx +afg +abv +abm +aCm +akg +aDy +akj +aCV +aCV +szT +jSU +alW +amd +alW +ams +amy +amL +amL +amW +adn +adn +adn +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baq +aad +aad +aad +baq +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(52,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +bqI +sxc +ilZ +njE +qOa +bqI +kfT +fmY +gCa +epD +epD +gCa +vTn +fpU +rVW +bJz +lTn +aah +aah +aah +aah +aah +aah +aah +ahl +ahN +ada +adH +ahl +apj +apj +apj +apj +apl +apl +apl +aso +apj +apj +apj +apj +auK +avh +abm +abv +abv +abv +acD +afu +agm +abm +aCn +aDc +aDJ +aDJ +aDJ +aDJ +uOe +nis +adn +amn +amo +amt +amz +amN +amR +amR +and +alY +adn +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(53,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +bqI +sVX +mTw +rOh +gud +bqI +nOB +csd +gCa +epD +mHm +gCa +ezn +qPR +hco +ubK +lTn +aah +aah +aah +aah +aah +aah +aah +ahl +ahL +anP +adI +ahl +apj +apj +apj +apj +apl +apo +apo +asp +apj +apj +apj +apj +auK +avh +abm +abw +abw +abw +abv +afA +abv +abm +aCo +aDd +aDg +aEm +aDg +aDg +aGm +aGW +adn +amo +amo +amu +amI +amN +amR +amR +adn +adn +adn +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(54,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +bqI +bqI +uFS +trV +bqI +bqI +paY +tQH +gCa +odn +hdh +odn +lTn +fDx +lTn +lTn +lTn +odn +odn +aah +aah +aah +aah +aah +ahl +ahL +anP +adu +ahl +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +auK +avh +abm +abD +abv +abv +adz +afP +agn +agE +ajJ +aDe +aDK +aEn +aDe +aDe +aGn +aGX +adn +adn +adn +adn +adn +adn +adn +adn +adn +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(55,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +gCa +owv +kxx +kAm +jKD +jKD +dJZ +ntZ +lTz +gAn +mAR +orf +ixF +vSS +tTC +iqO +xVX +rww +odn +aah +aah +aah +aah +aah +ahl +anB +anP +adu +ahl +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +auK +avh +abm +abw +abw +abw +adM +afU +abv +abm +ajW +aDf +aDL +aDg +aFe +aDg +aGo +aGY +awn +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aOR +aOR +aOR +aOR +aOR +aOR +aOR +aOR +aOR +aOR +aTW +aTW +aTW +aTW +aVE +aTW +aTW +aTW +aTW +aTW +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(56,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aah +gCa +jTQ +nBT +hFq +hOA +vRL +hFq +iEk +vRL +hFq +neZ +diq +uDQ +mvM +fLB +dMu +jIc +wRe +odn +aah +aah +aah +aah +aah +ahl +ahR +anP +adu +ahl +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +auK +avh +abm +abv +abv +abv +adM +afU +abv +abm +ajX +aDf +aDL +aDg +aFe +aDg +aGo +aGX +awn +aBO +aBO +aBO +aah +aah +aah +aah +aah +aah +aah +aah +aOR +aPl +aPl +aQo +aQR +aRu +aPl +aPl +aPl +aOR +aTW +aUv +aUy +aUv +aUy +aUv +aUy +aUv +aUy +aTW +aTW +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(57,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +gCa +gCa +ucv +pCj +eJQ +eby +pCj +eJQ +wVB +pCj +pCj +okO +qwV +wpZ +lwL +abT +abT +abT +abT +abT +abT +abT +abT +abT +lxU +ahL +anP +adu +ahl +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +auK +avh +abm +abI +abI +abI +adM +afU +abv +abm +aka +aFf +akc +akd +aFf +aFf +aGp +aGZ +aHt +aBN +aIa +aBO +aah +aah +aah +aah +aah +aah +aah +aah +aOR +aPl +aPL +aQp +aQS +aQp +aRP +aSw +aQp +aTJ +aTX +aUw +aUR +aUR +aUR +aUR +aUR +aUR +aUR +aUy +aTW +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(58,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +gCa +iWx +qsl +pCj +mrO +kmb +pCj +tiJ +kmb +pCj +kUN +cGU +qwV +nmf +hMu +abT +bbd +auM +baZ +bbw +bbU +cGJ +bch +air +ahl +ahK +add +adJ +ahl +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +apj +auK +avh +abm +abI +abI +abI +adN +afU +agr +abm +aCs +aDh +aDN +aEp +aFg +aFL +aGq +aHa +awn +aBP +aCv +aBO +aBO +aBO +aBO +aBO +aBO +aBO +aBO +aBO +aOR +aPl +aPM +aQq +aQT +aRv +aRP +aSx +aTc +aTK +aTX +aUx +aUA +aUx +aUA +aUx +aUA +aUx +aXd +aXd +aTW +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(59,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +gCa +kwN +lLD +pCj +qjE +bzb +pCj +qjE +bzb +pCj +bcQ +hTQ +qwV +wVI +oox +abT +amQ +bbe +bbe +bbe +bbe +bbe +bbe +bci +bbG +bbH +bbN +adu +ahl +apj +apj +apj +apj +apj +apj +apj +apu +apu +apu +apu +apu +apu +avj +abm +abm +abm +abm +abm +afX +abm +abm +awn +awn +awn +aEq +awn +awn +awn +awn +awn +aBP +aCw +aLv +aCY +aCZ +aLv +aMf +aLv +aLv +aLv +aLv +aej +aPm +aPN +aQr +aQT +aRw +aRQ +aSy +aTd +aTK +aTX +aUy +aUv +aUy +aUv +aUy +aUv +aUy +aXd +aXd +aTW +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(60,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +gCa +wwm +jio +pCj +dju +kmb +pCj +dju +kmb +pCj +jzW +hzx +qwV +wtD +wQS +abT +anp +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +ahL +bbO +adu +ahl +apu +apu +apu +apu +apu +apu +apu +apu +uqH +mHO +csb +nBm +asn +atl +axC +kCz +csb +imW +tMP +alJ +apu +aAm +aCt +aDi +aDO +aEr +aFh +aDi +aah +aah +aBO +aBP +aIG +aCX +aIa +aIa +aIa +aIa +aIa +aIa +aIa +aIa +aOR +aPn +aPO +aQs +aQT +aRx +aRQ +aSx +aTe +aTL +aTX +aUz +aUR +aUR +aUR +aUR +aUR +aUR +aUR +aUx +aTW +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(61,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +gCa +gCa +gCa +pCj +pCj +lhM +pCj +pCj +ocx +pCj +pCj +wwo +qwV +gnW +jCD +iKy +anp +aeW +amk +amF +amU +agz +agI +ani +aeW +ahS +bbP +bbS +bbG +apW +aqz +apW +arh +axS +axS +bcl +apu +agy +alb +alb +alb +alb +alC +axE +ayD +alF +alG +alH +alK +acW +aAn +aAv +aDi +aDP +aEs +aFi +aDi +aah +aah +aBO +aCh +aIG +aBO +aKh +aIa +aDx +aBO +aMM +aNy +aDM +aIa +aOR +aPo +aPP +aQr +aQT +aRy +aRv +aSz +aTf +aOR +aTW +aUA +aUx +aUA +aUx +aUA +aUx +aUA +aUx +aTW +aTW +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(62,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adK +aad +aad +aad +pCj +wjq +wjq +tdh +lQu +dPC +tdh +qmc +ofW +qoK +uzs +kEs +hMu +iKy +anp +aeW +aml +afT +afT +afT +agJ +anj +anu +anC +adh +adO +ahl +bcn +axS +bcl +azb +apW +apW +apW +bbX +aiC +alt +alv +alv +apu +bcq +avT +avT +axe +avT +avT +avT +avT +aBJ +aAw +aDi +aDQ +aEt +aFj +aDi +aah +aah +aBO +aIa +aIG +aJF +aJF +aJF +aJF +aJF +aJF +aJF +aJF +aJF +aIh +aPp +aPl +aQt +aQU +aRz +ajn +aSA +aTg +aOR +aTW +aUB +ajf +ajg +ajh +aVU +aVU +aWO +aTW +aTW +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(63,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +mYf +rQe +ybc +rzZ +hTw +hTw +hTw +hTw +hTw +uFs +ddU +wxV +nID +iKy +anp +aeW +aft +amG +afr +afr +amG +agX +ahn +ahU +anP +adu +aoH +aoH +aoH +aoH +aoH +apu +apu +apu +apu +aqb +ate +atK +atL +apu +bcr +avT +awD +axf +axS +axS +axS +aAM +aBJ +aAE +aDi +aDi +aDi +aDi +aDi +aah +aah +aBO +aIa +aIG +aJF +aKi +aKi +aLx +aMg +aMN +aNz +aNU +aNU +aIh +aPq +aPQ +aOR +aQV +aRA +aRS +aRA +aTh +aOR +aOR +aUC +aOR +aVk +aVF +aVV +aVV +aOR +aOR +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aaa +"} +(64,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +pCj +oTK +oTK +pKE +hQw +eeo +oVq +oVq +pjs +loj +vih +dlB +xYx +iKy +anp +aeW +amm +amH +afr +agA +amH +agY +ahn +ahL +anP +adu +aoI +apq +apY +aqB +aoH +aoH +bcd +bcd +apu +aqb +ate +apu +apu +apu +adr +avT +agb +agb +agb +agb +agb +agb +aBJ +aAE +aBO +aah +aah +aah +aah +aah +aah +aBO +aIa +aIG +aJF +aKj +aKT +aLy +aMh +aMO +aNA +aNA +aOw +aIh +aPr +aPR +aOR +aQW +aRB +aRT +aSB +aTi +aTM +aTM +aUD +aTM +aEu +aEA +aWq +aWq +aQW +aOR +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aaa +"} +(65,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +pCj +tdh +tdh +ccA +jDI +ptv +vVr +frz +fqa +fqa +eDh +fqa +fqa +fqa +anp +aeW +afv +amG +afr +amZ +amG +agX +ahn +ahS +anP +adW +aoI +apr +apr +apr +ara +aoH +aoH +bcd +apu +asJ +ate +apu +bcd +apu +bcs +azG +agb +agc +agc +agc +agh +agb +aBJ +aAE +aBO +aah +aah +aah +aah +aah +aah +aBO +aCi +aHc +aJF +aKk +aKk +aLz +aMi +aMP +aNB +aNV +aNV +aIh +aPs +aPS +aOR +aQX +aRC +aRU +aSC +aTj +aSC +bcP +aSC +aUS +aEv +aSC +aEB +aWr +aQW +aOR +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baW +aaa +aaa +aaa +"} +(66,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +pCj +tdh +tdh +pKE +jDI +ptv +pCj +pCj +fqa +fOy +xdV +tMD +ekC +fqa +anp +aeW +afw +afV +agu +agu +agu +ank +aho +ahV +adi +aeq +aoJ +aps +apZ +aqC +arb +art +aoH +bcd +apu +aqb +ate +apu +bcd +apu +bcB +azK +bbQ +agc +agc +agc +agc +agb +aBJ +aAE +aBO +aah +aah +aah +aah +aah +aah +aBO +aIb +aHc +aJF +aJF +aJF +aJF +aMj +aMQ +aJF +aJF +aJF +aIh +aPq +aPT +aOR +aQY +aRA +aRV +aQV +aTh +aOR +aOR +aOR +aOR +aOR +aOR +aeu +aOR +aOR +aOR +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aoq +aoq +asG +"} +(67,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +pCj +wjq +wjq +pKE +pmV +loj +plW +tdh +fqa +fOy +eAd +ozx +iUF +fqa +anp +aeW +afr +afW +amV +agB +agK +anl +aeW +ahU +aiN +aet +aoI +apr +apr +aqD +arc +aru +aoH +bcd +apu +aqb +ate +apu +bcd +apu +bcs +azU +agb +agc +agc +agc +agc +agb +aBJ +aAE +aBO +aah +aah +aah +aah +aBO +aBO +aBO +aIc +aIJ +aIh +aKl +aKU +aLA +aMk +aMR +aNC +aNW +aOx +aJI +aPt +aJI +aJI +aQy +aRD +aRW +aSD +aTk +aIh +aah +aah +aah +aah +aVn +aTZ +aWs +aVn +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aoq +aoq +asS +"} +(68,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +mYf +rQe +tak +lEg +scf +mYO +mYO +mYO +fqa +fOy +rSG +fqa +fqa +fqa +anp +aeW +aeW +aeW +aeW +aeW +aeW +aeW +aeW +ahW +aiO +aew +aoI +apt +aqa +aqE +ard +arv +aoH +bcd +apu +aqb +ate +apu +bcd +apu +aiW +avT +agb +agc +agc +agc +agc +agb +aBJ +aAE +aBO +aah +aah +aah +aah +aBO +aHb +aBt +aBt +aIK +aIh +aKm +aJI +aLB +aMl +aMS +aND +aNX +aND +aND +aPu +aPU +aPU +aQZ +aRE +aRX +aSE +aSE +aIh +aah +aah +aah +aah +aVn +aTZ +aWt +aVn +aVn +aVn +aVn +aVn +aVn +aVn +aVn +aVn +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aoq +aoq +asS +"} +(69,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +pCj +oTK +oTK +tdh +hQg +nvD +eBd +eBd +fqa +fOy +xtS +fvH +uAv +fqa +anp +adK +aah +aah +aah +aah +abT +abT +abT +ahX +aey +aiP +aoK +apu +apu +apu +apu +apu +apu +apu +apu +aqb +ate +apu +bcd +apu +adr +avT +agb +agb +agc +agc +agi +agb +avU +aAE +aBO +aah +aah +aah +aah +aBO +aHc +aHv +aHv +aHv +aIh +aKn +aKV +aLC +aJI +aJI +aJI +aJI +aJI +aJI +aJI +aJI +aJI +aQy +aRF +aSn +aSF +aTl +aIh +aah +aah +aah +aah +aVn +aTZ +aEC +aVn +aXe +aXy +aXR +aYk +aTZ +aTZ +aTZ +aVn +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +baV +aoq +aoq +asS +"} +(70,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +iKy +iKy +iKy +iKy +iKy +iKy +iKy +iKy +fqa +fqa +fqa +fqa +fqa +fqa +anc +abT +abT +abT +abT +abT +abT +qor +qor +pyD +bbR +aez +aoL +apv +aqb +aqb +aqb +arw +ate +arX +apu +aqb +atf +apu +bcd +apu +adr +apu +agM +axg +axT +axT +azL +aAN +agM +aAF +aBO +aah +aah +aah +aah +aBO +aHc +aHv +aCj +aIL +aIh +aKo +aJI +aLC +aJI +aJI +aJI +aJI +aJI +aJI +aPv +aPV +aQu +aRa +aRG +aRY +aSG +aTm +aIh +aIh +aIh +aah +aah +aVn +aTZ +aWv +aVn +aFk +aTZ +aXS +aTZ +aTZ +aYk +aTZ +aVn +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +baV +aoq +aoq +asS +"} +(71,1,1) = {" +aaa +acN +aib +ajC +ajC +ajC +ajC +ajC +ajC +ajD +ajE +ajE +ajE +ajE +ajE +ajE +ajF +ajC +aaj +aib +aiT +ajG +ajG +ajG +ajG +ajH +ajI +ajI +ajI +akC +ajI +ajI +asH +ajI +asI +bbc +bbT +bbT +bbT +bbc +aup +sLi +ako +ahX +anQ +aeG +ahX +ahX +ahX +apu +apu +aqb +arM +arY +apu +aqb +atg +apu +bcd +apu +awB +bcd +agM +axh +axU +ayG +azM +aAO +agM +aAw +aBO +aah +aah +aah +aah +aBO +aBl +aeb +aCk +aCx +aJG +aKp +aKW +aLD +aJI +aJI +aJI +aJI +aJI +aJI +aPw +aPw +aPw +aRb +aRH +aRZ +aSH +aTn +aTN +aTN +aIh +aah +aah +aVn +aTZ +aED +aVn +aXe +aTZ +aHj +aYk +aTZ +aTZ +aTZ +aVn +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +baV +aoq +aoq +asS +"} +(72,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +abT +abT +abT +abT +abT +abT +abT +abT +abT +abT +abT +abT +abT +adt +adt +adt +adt +adt +abT +abT +abT +tCV +akt +ahX +aiS +aeH +aoM +apw +ahX +aqF +ari +aqb +aqb +arZ +asq +asK +apu +apu +apu +apu +avi +apu +agM +agM +axV +ayH +azN +agM +agM +aAw +aBO +aah +aah +aah +aah +aBO +aHf +aHv +aIf +aIN +aIh +aKq +aJI +aLC +acv +aMT +aMT +aMT +aMT +aMT +aPx +aPW +aPx +aRc +aRI +aSa +ajw +aRM +aPG +aTY +aIh +aah +aah +aVn +aTZ +aWx +aVn +aXg +aTZ +aHu +aYm +aYk +aTZ +aTZ +aVn +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +baV +aoq +aoq +asS +"} +(73,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adK +aah +aah +aah +aah +aah +aah +aah +abT +vCb +acS +acS +acS +adt +agd +bbs +bbC +qDR +eQz +eQz +abT +wzA +aku +ahX +anR +aeH +aoM +apw +ahX +aqF +ahX +apu +apu +apu +apu +asL +ath +axS +apu +bcz +azb +bcv +axS +agM +axW +ayI +azO +agM +aAo +aAE +aBO +aah +aah +aah +aah +aBO +aHf +aHv +aCl +aIO +aIh +aKq +aJI +aLC +aMm +aMU +aMv +aNY +aJI +aJI +aMU +aPX +aQv +aNa +aJI +aMm +aSI +aTo +aTO +aTO +aIh +aUT +aVn +aVn +aTZ +aEE +aVn +aVn +aXz +aVn +aVn +aVn +aVn +aVn +aVn +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aoq +aoq +asS +"} +(74,1,1) = {" +aaa +aaa +aaa +aaa +aab +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aad +adK +adK +aad +aad +aad +aaq +aaq +aaq +aaq +aah +aah +aah +aah +abT +abH +acX +acX +adL +adt +bbg +bbu +bbD +adt +eQz +eQz +abT +tCV +akt +ahX +anS +aeK +aoN +ahX +ahX +ahX +ahX +aah +aah +aah +apu +asL +apu +axS +apu +bcA +axS +apu +apu +agM +axX +ayG +azP +agM +aAp +aAK +aBO +aah +aah +aah +aah +aBO +aHf +aHv +aIh +aIh +aIh +aIh +aIh +aLC +aMm +aMV +aNE +aNZ +aNZ +aNZ +aNZ +aNE +aQw +aNa +aJI +aSb +aMV +aTp +aIh +aIh +aIh +aTZ +aTZ +aVI +aTZ +aTZ +aTZ +aXh +aTZ +aHx +aTZ +aTZ +aTZ +aZv +aVn +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aoq +aoq +asS +"} +(75,1,1) = {" +aac +aaf +aaf +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +akK +akK +aae +aaf +aai +aaq +aaz +aaM +aaq +aef +aef +aef +aef +abT +acQ +adl +ado +aco +adt +bbh +bbv +bbE +adt +eQz +eQz +abT +tCV +ahs +ahZ +aiV +aaQ +aeO +aoO +apy +aqG +ahX +aah +aah +aah +apu +asL +apu +axS +apu +bcC +axS +apu +bcd +agM +axY +ayG +azQ +agM +aAq +aAE +aBO +aah +aah +aah +aah +aBO +aHf +aHw +aIh +aIP +aJH +aKr +aKX +aLE +aMn +aMW +aNF +aOa +aOy +aOU +aOU +aNZ +aQx +aRd +aOB +aRH +aSJ +aTn +aTP +aTP +aIh +aTZ +aWy +aTZ +aTZ +aWy +aTZ +aXi +aTZ +aYm +aHy +aYF +aTZ +aZv +aVn +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baW +aaa +aaa +aaa +"} +(76,1,1) = {" +aqR +aaf +aaf +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaf +aak +aaq +aaA +aaA +aaq +erc +dxY +ads +aeg +aef +aef +aef +aef +ajc +adt +bbi +adt +bbF +adt +abT +abT +abT +tCV +ahs +ahX +anT +aeP +ahX +apx +aqc +aqH +ahX +aah +aah +aah +apu +asL +ati +apu +apu +apu +avO +agM +agM +agM +axZ +ayJ +azR +agM +aAr +aAE +aBO +aah +aah +aah +aah +aBO +aHf +aBH +aIh +aIQ +aJI +aJI +aKY +aLF +aMo +aMX +aNG +aOb +aOz +aOV +aPy +aNZ +aQy +aNa +aJI +aSc +ajx +aRM +aPG +aTY +aIh +aWy +aTZ +aVn +aVn +aVn +aVn +aVn +aVn +aVn +aVn +aYG +aVn +aVn +aVn +aYd +aYd +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +baV +aaa +"} +(77,1,1) = {" +aqR +aaf +aaf +aaf +aaf +aaf +aaf +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaf +aal +aas +aaB +aaN +hYh +abZ +acy +adv +aeh +aeN +afI +aBx +aCq +nDD +jPk +lpK +lDW +hPU +afC +lDW +afR +lDW +hQP +anv +aia +aiX +aeX +ahX +ahX +ahX +ahX +ahX +aah +aah +aah +apu +asL +atj +atL +atL +atL +atL +agM +ahc +ahu +aya +ayG +azS +aAP +aBO +aCA +aBO +aBO +aBO +aBO +aBO +aBO +aBm +aBI +aIh +aIR +aJJ +aKs +aKZ +aLG +aMp +aMq +aMq +aOc +aJI +aJI +aJI +aNZ +aQy +aNa +aJI +aMm +aSK +aTo +aTQ +aTQ +aIh +aTZ +aTZ +aVn +aVZ +aWz +aWQ +aXj +aXA +aXX +aYo +aHY +aXk +aZw +aWc +aUF +bas +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(78,1,1) = {" +aqR +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aae +aae +aae +aae +aae +aae +aae +aaf +aaf +aat +aaC +aaP +hpB +aca +acB +adx +aes +aeQ +afJ +aBy +aef +abT +abT +aeA +alX +amq +amM +cGJ +vHW +vHW +anp +abT +ahX +aiY +afa +ahX +aah +agM +agM +agM +aah +aah +aah +apu +asL +apu +agM +agM +atL +atL +agM +agM +agM +ayb +ayG +rYl +aAQ +aAt +aCB +aDj +aAT +aAT +aBf +aFM +aBj +aBr +aBK +aIh +aIS +aJK +aKt +aLa +aLH +aMp +aMY +aNH +aOd +aJI +aJI +aMU +aNZ +aQz +aNa +aJI +aSb +aMV +aTq +aIh +aIh +aIh +aTZ +aTZ +aVn +aWa +aWA +aWA +aWA +aGu +aXY +aXY +aYI +aIY +aXY +aLf +aUU +aYd +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(79,1,1) = {" +aqR +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aam +aaq +aAB +aAJ +aaq +aef +aef +aef +aef +aeS +afM +aBz +aef +acg +abT +aeB +afd +adp +tEo +ndH +agH +bbe +ahB +bcS +ahX +aiZ +afc +ahX +aah +agM +ahc +agM +aah +aah +aah +apu +asL +apu +ahc +agM +bcp +atL +atL +atL +atj +ayc +ayG +dCc +aAR +aBQ +aAL +aBQ +aBQ +aAU +aFl +aFN +ohi +ohi +loc +aec +aIT +aJL +aKu +aJI +aJI +aMq +aMZ +aNI +aJI +aJI +aJI +aPz +aNE +aQA +aMY +aOB +aRH +aSL +aTn +aTR +aTR +aIh +aUV +aTZ +aVn +abz +aWB +aWS +aWB +aXC +aWS +aWS +aWA +aXk +aJE +aLw +aZX +bas +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(80,1,1) = {" +aqR +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aAD +aAD +aAD +aAD +aAI +aAI +aAI +aef +aeZ +afN +aBA +aCr +aCr +aCr +aCr +aCr +aGa +aGa +aGa +aHV +aGa +aGa +aGa +agM +aja +afh +agM +agM +agM +aqI +agM +agM +agM +asa +agM +asM +agM +aqI +agM +agM +agM +agM +agM +agM +abc +sQB +byP +agM +aBO +aBO +aBO +aBO +aEz +aFl +aBO +aBO +aBO +aHC +aIh +aIU +aJM +aKv +aLb +aLI +aMr +aNa +aJI +aJI +aJI +aJI +aPA +aNZ +aQx +aNa +aJI +aSd +ajy +aRM +aPG +aTY +aIh +aTZ +aTZ +aVn +aWb +aWC +aWC +aWC +aGR +aYa +aYp +aWA +aXk +aWA +aWA +aYd +aYd +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(81,1,1) = {" +aqR +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aAD +aAI +aAI +aAI +aAI +aAI +aAI +aef +aeS +afO +aBB +aCr +aDa +aDU +aEj +aCr +aGb +aGK +aHr +aIq +aJU +aLt +aGa +anD +anU +afp +aoP +apz +aqd +aqJ +arf +arx +arN +aqd +asr +asN +atk +atM +aus +auN +avm +avV +jDg +wUW +abh +abk +osh +agM +aah +aah +aah +aBO +aEw +aFl +aBO +aah +aBO +aHC +aIh +aIV +aJN +aJI +aJI +aJI +aMs +aNa +aJI +aJI +aJI +aJI +aJI +aNZ +aQy +aNa +aJI +aMm +aSM +aTo +aTS +aTS +aIh +aTZ +aEx +aVn +aWc +aWc +aWc +aWA +aHd +aYb +aYb +aHZ +aHZ +aYb +aYb +aZY +aYd +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(82,1,1) = {" +aqR +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aAD +aAI +aAI +aAI +aAI +aAI +aAI +aef +aeS +afO +aBC +aCr +aDb +aDV +aEk +aCr +aGc +aGL +aHs +aIs +aKb +aLu +aGa +aic +anV +aoh +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +asb +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +aoQ +xAT +aoQ +tvk +abl +ghr +agM +aah +aah +aah +aBO +aAV +aFl +aBO +aah +aBO +aHC +aIh +aIW +aJM +aJI +aLc +aJI +aMt +aNb +aNJ +aOe +aOA +aOe +aPB +aNZ +aQy +aNa +aJI +aMm +aSN +aOf +aIh +aIh +aIh +aTZ +aEy +aVn +aWd +aWd +aWc +aXk +aXG +aWA +aXk +aXk +aIZ +aWA +aWA +aZZ +aYd +aYd +aYd +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(83,1,1) = {" +aqR +aaf +aaf +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaf +aag +aaf +aaf +aAD +aAI +aAI +aAI +aAI +aAI +aAI +aef +afi +afQ +bca +aCr +aDs +aDW +aEl +aFc +aGe +aGM +aHz +aIA +aKc +aLZ +baX +aid +goJ +aoi +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoi +awH +oQm +gVe +lNt +mon +agM +aah +aah +aah +aBO +aAY +aFl +aBO +aah +aBO +aHC +aIh +aIX +aJO +aKw +aLd +aLJ +aMr +aNc +aNK +aOf +aOf +aOf +aOf +aNZ +aQB +aRe +aRJ +aSe +aSO +aTr +aer +aTZ +aTZ +aTZ +aTZ +aVn +aWe +aWd +aWc +aWA +aXG +aXk +aWA +aWA +aWA +aWA +aXk +aWc +aWc +aWc +bas +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(84,1,1) = {" +aqR +aaf +aaf +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aae +aaf +aaf +aaf +aao +aao +aao +aao +aao +aao +aao +aao +aao +gJK +afO +aBE +aCr +aDt +aEd +aEo +aFd +aGf +aGN +aHA +aJj +aKd +aMe +aKd +aie +anW +aoj +aoR +apA +apA +apA +aoR +ary +ary +ary +ary +ary +aoR +apA +apA +apA +aoR +aoj +awH +axk +agM +aqM +agM +agM +agM +aah +aah +aBO +aEz +aFl +aBO +aah +aBO +aHD +aIh +aIh +aIh +aIh +aIh +aJI +aMs +aNc +aNE +aNZ +aNZ +aNZ +aNZ +aNE +aQC +aNa +aJI +aSb +aQy +aTs +aIh +aUa +aDR +aTZ +aTZ +aVn +aWd +aWd +aWT +aXl +aXH +aYc +aYq +aYL +aeI +aKg +aKg +baa +bat +aWB +bas +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(85,1,1) = {" +aaa +aaa +aaa +aaa +aab +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aao +aau +aaF +aaS +abd +acd +acE +adC +aao +bcc +afS +aBF +aCL +aeC +aEf +aEG +aCr +aGg +aGN +aHF +aJk +aKe +aML +aGa +aif +anW +aoj +aoS +apB +aqe +aqe +aqe +aqe +aqe +aqe +aqe +aqe +aqe +aqe +aqe +auO +aoS +aoj +awH +axl +agM +ahc +agM +aAS +agM +aah +aah +aBO +aEz +aFn +aBO +aah +aBO +aBL +aBb +aCy +aIh +aKq +aJI +aJI +aMs +aNd +aNL +aOg +aOB +aOB +aPC +aPY +aOg +aRf +aRK +aMm +aQy +aJI +aIh +aUb +aUb +aUb +aUb +aUb +aUb +aUb +aUb +aXm +aXI +aYd +aYd +aYM +aYd +aYd +aLL +bab +bau +aWB +aYd +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(86,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aap +aav +aaG +aaX +abe +acf +acH +adD +aao +afj +age +aBB +aCr +aDt +aEg +aEU +aCr +aGh +aGO +aHK +aJl +aHK +aOS +aGa +bbm +anW +aoj +aoS +apC +aqf +aqK +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqK +aqf +arg +aoS +aoj +awH +axm +ayh +ayh +ayh +ayh +ayh +ayh +ayh +ayh +aAZ +aFl +aBO +aah +aBO +aBQ +aCp +aCz +aIh +aKq +aJI +aJI +aMs +aJI +aMq +aJI +aJI +aJI +aMq +aJI +aJI +aJI +aMq +aMm +aRF +aTt +aIh +aUc +aUG +aUW +aUW +aUW +aWf +aUc +aUb +aFm +aXJ +aYd +aYr +aYN +aZh +aYd +aZI +aWc +aWS +aWw +bas +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(87,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aap +aaw +aaH +aaY +abi +ach +acL +axa +aev +afk +agg +aBB +aCr +aDB +aEh +aDC +aCr +aGi +aGP +aHM +aJt +aKf +aQE +aGa +bbk +anW +aoj +aoS +apC +aqf +aqf +aqf +aqg +aqg +aqg +aqg +aqg +aqf +aqf +aqf +arg +aoS +aoj +awH +axm +ayh +ayQ +azZ +hmx +aBR +aCD +aDl +ayh +aBa +aFl +aBO +aah +aBO +aBO +aEz +aHD +aIh +aKx +aKx +aJI +aMu +aNe +aMr +aJI +aOC +aNe +aPD +aPZ +aPZ +aPZ +ajk +aSf +aSP +aTu +aIh +aUc +aUc +aUc +aUc +aUc +aUc +aUc +aUb +aXu +aHe +aYd +aYs +aYO +aZi +aYd +aWA +aVh +aWc +aWc +bas +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(88,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aap +aax +aaK +aaK +abo +aaK +aaK +adP +aao +cPX +afO +aBB +aCr +dYd +aEh +aDC +aCr +aGj +aGQ +aGj +aGj +aKG +aGj +aGj +aii +anW +aoj +aoS +apC +aqf +aqf +arg +arz +arz +asc +arz +arz +apC +aqf +aqf +arg +aoS +aoj +awH +axn +ayh +ayR +iwE +efV +aBS +aCE +aDm +aDS +aBb +aBg +aBO +aah +aah +aBO +aEz +aHC +aIh +aKy +aLe +aLP +aMv +aNf +aNM +ajj +aOD +aOW +aPE +aOW +aQD +aRg +aRL +ajr +aSQ +aMv +aIh +aUc +aUH +aUX +aUX +aUX +aWg +aUc +aUb +aXr +aXJ +aYd +aYd +aYd +aYd +aYd +aYd +aYd +aYd +aYd +aYd +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(89,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aao +aay +aaL +aaZ +adb +acn +awy +adQ +aao +yaU +afO +aBB +aCr +aDC +aEh +aDt +aCr +aGk +aDA +aHQ +aJy +aKI +aRR +aGj +bbl +anX +aoj +aoS +apC +aqf +aqf +arg +arA +arz +aoR +arz +asO +apC +aqf +aqf +arg +aoS +aoj +awI +axo +ayh +ayS +iwE +nmD +aBT +aCF +aDn +ayh +aBc +aFl +aBO +aah +aah +aBO +aCu +aHC +aIh +aIh +aIh +aIh +aMw +aNg +aNN +aOh +aOE +aNg +aPF +aOh +aMw +aNg +aRM +aSg +aSR +aTv +aIh +aUd +aUI +aUb +aUb +aUb +aWh +aWD +aUb +aXr +aXJ +aYe +bad +aId +aZj +aZz +aNT +bad +bad +aWP +baR +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(90,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aao +aao +aao +aao +abY +aao +aao +aao +aao +yaU +afO +aBB +aCr +aDC +aEh +aEV +aFt +aGl +aGS +aHR +aJz +aKO +aTT +baY +bbm +anW +aoj +aoS +apC +aqf +aqf +arg +arz +arz +asd +arz +arz +apC +aqf +aqf +arg +aoS +aoj +awH +axp +ayh +ayT +iwE +cXW +aBT +aCG +aDo +ayh +aBd +aFl +aBO +aah +aah +aBO +aIk +aHC +aBO +aKz +aIa +aIh +aIh +aNh +aNO +aOi +aIh +aOX +aPG +aQa +aIh +aRh +aPG +aSh +aIh +aIh +aIh +aUe +aUG +aUW +aUW +aUW +aWf +aWE +aUb +aXt +aXM +aYf +aYu +aIe +aJa +aZA +aZK +aVl +bad +aWR +baR +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(91,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aeU +atc +awx +aeU +aAI +aAI +aef +yaU +afO +aBB +aCr +aDD +aEh +aDD +aCr +aGr +aGT +aHS +aJA +aKP +aVY +bba +afK +anW +aoj +aoS +apC +aqf +aqf +aqf +aqe +aqe +aqe +aqe +aqe +aqf +aqf +aqf +arg +aoS +aoj +awH +axq +ayh +ayU +gxa +qWk +ayh +ayh +ayh +ayh +aBe +aFl +aBO +aah +aah +aBO +aBO +aJb +aBO +aIa +aDk +aDI +aIh +aNh +aNP +aOi +aIh +aOX +aPH +aQa +aIh +aRh +aPH +aSh +aIh +aTw +aNE +aUe +aUc +aUc +aUc +aUc +aUc +aWE +aUb +aXr +aXP +aYe +aYe +aYR +aYe +aYe +aZL +aVm +aVW +baK +aYe +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(92,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aeU +atq +aww +aeU +aAI +aAI +aef +afl +agj +aBG +aCr +aDE +aEi +aEW +aCr +aGs +aGU +aHT +aJB +aKQ +aXQ +aGj +aCN +anW +aoj +aoS +apC +aqf +aqK +aqf +aqf +aqf +aqf +aqf +aqf +aqf +aqK +aqf +arg +aoS +aoj +awH +axm +ayi +ayV +fyp +huE +aBU +aCH +aDp +ayh +aBO +aFp +aBO +aGt +aGt +agM +aIl +aJc +agM +agM +aLg +ajl +ajl +ajl +ajl +anm +anm +anm +anm +ann +ann +ann +ann +anE +anE +anE +aSi +aUe +aUH +aUX +aUX +aUX +aWg +aWE +aUb +aXr +aXJ +aYe +aYv +aIg +aZl +aYe +aUE +aZz +aZz +aZz +baR +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(93,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +aan +aan +aan +aan +aan +atI +awz +aeU +aeU +aeU +aeU +aBD +afO +aBB +aCr +aCr +aCr +aCr +aCr +aGj +aGj +aGj +aGj +aGj +aGj +aGj +bbp +anW +aoj +aoS +apD +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +aqg +auP +aoS +aoj +awH +axm +ayh +ayW +eQT +niz +aBV +aCI +aDq +ayh +aCJ +aFq +aCJ +aBk +aCJ +agM +ayG +aJd +ayG +aKA +aLg +aLM +aMx +aLM +aLg +aOk +aOF +aOk +aOj +aQc +aQF +aQc +aQb +aSj +aSS +aSj +aSi +aUf +aUI +aUb +aUb +aUb +aWh +aWF +aUb +aFo +aXJ +aYe +aHB +aYT +aZm +aYe +aZN +aVo +aVX +bad +baR +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(94,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +aaV +aba +acO +adw +aan +atJ +awA +aeU +acZ +ade +aeU +jQL +amw +aBW +aCM +aDF +aCM +lUk +aCM +aCM +aCM +aCM +aJC +qWW +aZg +aef +bbq +anW +aoj +aoR +apA +apA +apA +aoR +ary +ary +ary +ary +ary +aoR +apA +apA +apA +aoR +aoj +awH +axm +ayh +ayh +aAf +cpp +ayh +ayh +ayh +ayh +aCJ +aFr +aCJ +aCJ +aCJ +agM +aeM +aJd +ayG +aKA +aLg +aLM +aLM +aLM +aLg +aOk +aOk +aOk +aOj +aQc +aQc +aQc +aQb +aSj +aSj +aSj +aSi +aUe +aUG +aUW +aUW +aUW +aWf +aWE +aUb +aXr +aXJ +aYe +aYe +aYe +aYe +aYe +aYe +aYe +aYe +aYe +aYe +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(95,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +abf +acl +acR +abP +aeY +atN +adX +adY +awY +adR +adU +afo +aem +afF +aBX +aDG +aBX +aBX +aFu +aGv +aBX +aBX +aJS +aKR +aKR +bbb +agf +anW +aoi +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoj +aoi +awH +axr +fAW +kKl +xzn +ldI +agM +aCJ +aCJ +aCJ +aCJ +aFs +aCJ +aCJ +aCJ +agM +ayG +aJe +aJP +aKB +aLg +aLM +aLM +aLM +aLg +aOk +aOk +aOk +aOj +aQc +aQc +aQc +aQb +aSj +aSj +aSj +aSi +aUg +aUJ +aUJ +aVq +aVJ +aVJ +aWG +aUb +aXr +aXJ +aYg +aYx +aIi +aJu +aZQ +aZO +bah +aWu +aXf +baS +baU +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(96,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +abj +acm +acU +adA +aan +aBn +lbu +axL +adc +adS +aeU +afs +aeD +aCg +mGH +aDH +mGH +aEX +aFv +aGw +aGV +aHU +aJT +tRA +igw +bbf +ago +anY +aok +aok +aok +aok +aok +aok +aok +aok +ase +aok +aok +aok +sEz +aut +aut +avn +avW +awJ +avW +kgk +mSz +qhq +oib +agM +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +agM +aIm +aJf +aJQ +aKC +aLg +aLM +aLM +aLM +aLg +aOk +aOk +aOk +aOj +aQc +aQc +aQc +aQb +aSj +aSj +aSj +aSi +aUc +aUc +aUc +aVr +aUc +aUc +aUc +aUb +aXt +aXO +aYh +aHE +aIj +aZo +aZC +aZC +aVp +aWu +aZQ +baS +baU +baU +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(97,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +aan +abp +abq +acY +adB +aan +atP +awE +aeU +aeU +aeU +aeU +aef +aef +afE +aef +aef +aef +aEY +aFO +aGw +aHh +aef +aef +aef +aef +aef +bbt +anZ +aol +aoT +apE +aqh +aqL +doa +aqL +ajA +asf +ass +mGP +atn +cHW +auu +auQ +avo +avX +awK +aqh +vfy +qwm +ayG +qRI +agM +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +agM +aIn +aJg +aJR +aKD +aLg +aLM +aLM +aLM +aLg +aOk +aOk +aOk +aOj +aQc +aQc +aQc +aQb +aSj +aSj +aSj +aSi +aUb +aUb +aUb +aVs +aUb +aUb +aUb +aUb +aXu +aXJ +aYg +aYg +aIE +aYg +aYg +aZP +baj +baA +baM +aYg +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(98,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +aaD +abq +acq +acY +adE +aan +uHS +awF +axM +aeU +aah +aah +aah +aah +akA +aAG +aah +aef +aEZ +aFP +aGw +aHi +aef +aah +aah +aah +agM +agM +aoa +agM +agM +agM +agM +aqM +agM +aqM +agM +asg +ash +uxF +ash +kMG +ash +auR +avp +auR +awL +abx +awN +bPt +oVr +mrR +agM +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +agM +aIo +aJf +aJQ +aKE +aLg +aLM +aLM +aLM +aLg +aOk +aOk +aOk +aOj +aQc +aQc +aQc +aQb +aSj +aSj +aSj +aSi +aUh +aUK +aUY +aVt +aVK +aWi +aWH +aUb +aXv +aXJ +aYg +aYz +aIF +aZp +aYg +aZQ +bah +bah +aXn +baS +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(99,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adK +aad +aad +aar +aaE +abr +abr +adf +adT +afb +atO +awC +axN +aeU +aah +aah +aah +aah +akA +aAG +aah +aef +aFa +aFQ +aGw +aHk +aef +aah +aah +aah +ahx +anI +aob +aom +ahx +guV +apF +ahc +apF +nKz +apF +ash +ast +asU +ato +evF +ast +auR +avq +anH +awM +axs +awN +azd +ayG +jnj +agM +cOq +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aBs +agM +aEH +aJh +aJQ +aKF +aLg +aLN +aMy +aNi +aLg +aOl +aOG +aOY +aOj +aQd +aQG +aRi +aQb +aSk +aST +aTx +aSi +aUi +aUL +aUZ +aVu +aVL +aWj +aWI +aUb +aXr +aXJ +aYg +aHO +aYY +aZq +aYg +aZQ +bal +baB +bah +baS +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(100,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aar +abL +abL +abL +abL +aea +afb +atO +awC +axO +aeU +aah +aah +aah +aah +anF +aAG +aah +aef +aFb +aFZ +aGJ +aHq +aef +aah +aah +aah +ahx +ait +aoc +aon +aoU +apG +apF +aqN +apF +aqN +apF +ash +ast +asU +atp +hoH +ast +auR +avr +avZ +awN +axt +awN +azc +ayG +uEK +agM +agM +agM +aDT +aEF +agM +agM +agM +agM +agM +aIp +aJi +agM +agM +aLg +aLO +aMz +aNj +aLg +aOm +aOH +aOZ +aOj +aQe +aQH +aRj +aQb +aSl +aSU +aTy +aSi +aUj +aUM +aVa +aVx +aVM +aWk +aWJ +aUb +aXr +aXJ +aYg +aYg +aYg +aYg +aYg +aYg +aYg +aYg +aYg +aYg +baU +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(101,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aar +aaJ +abU +acC +abL +aei +afb +atO +awG +aed +aeU +aah +aah +aah +aah +akA +aAG +aah +aef +aef +aef +aef +aef +aef +aah +aah +aah +ahx +anJ +aod +aoo +ahx +aaW +aqi +aqO +mRY +aql +aql +ash +asu +asU +qOA +uuu +ast +auR +avs +awa +awN +axt +awN +azd +ayJ +mZO +agM +kbZ +cqZ +xzn +lQQ +vHP +bMP +eUS +axi +mCe +xzn +abb +rxq +aMc +aLg +aLg +aLg +aNk +aLg +aOj +aOj +aPa +aOj +aQb +aQb +aRk +aQb +aSi +aSi +aTz +aSi +aUb +aUb +aUb +aVw +aUb +aUb +aUb +aUb +aXr +aXP +aYi +aYB +aIH +aJw +aZD +aZR +baD +baD +baO +baT +baU +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(102,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aar +aaO +abV +acF +abL +aek +afb +atO +awz +aeU +aeU +axP +axP +axP +axP +akA +aAI +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +ahx +ahx +ahx +ahx +ahx +apF +apF +aqP +apF +apF +apF +ash +asv +asU +atr +atR +auv +auR +avt +awb +awN +abA +auR +aze +ayG +oKY +qKn +sHO +uKS +ayG +ayG +ayG +ayG +ayG +ayG +ayG +ayG +aJg +nsp +aKH +aLh +aNQ +aMA +aNl +aOT +aOn +aOI +aPb +aPI +aQf +aQI +aRl +aRN +aSm +aOI +aTA +aTU +aUk +aUN +aVb +aWW +aVN +aWl +aWK +aWU +aXw +aXO +aYj +aHW +aII +aJx +aKS +aKS +aVG +aZD +baP +baT +baU +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(103,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +aaR +abL +abL +abL +ael +aan +atQ +awV +axQ +adZ +ayB +ayZ +aAc +aAi +asT +aAI +adK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +apF +aqP +apF +arL +arO +asi +asw +asw +ats +atS +auw +auR +avu +awc +awN +axt +aym +azf +ayG +byn +uUP +tVd +eow +kAG +rZZ +ghg +wxa +glc +glc +glc +hTz +rVb +kPT +bbn +aLi +aLQ +aMB +aNm +aNR +aOo +aOJ +aPc +aPJ +aQg +aQJ +aNm +aRO +aVv +aOJ +aNm +aTV +aUl +aUO +aVc +aVy +aVO +aWm +aWL +aVn +aXP +aXP +aYi +aYi +aZb +aYi +aYi +aZS +bao +baC +baQ +aYi +baU +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(104,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adK +aad +aad +aan +aan +abX +acG +abX +aan +aan +acP +awW +axR +aee +ayC +aza +aAd +axP +aAz +aAI +adK +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +apF +aqQ +arl +ark +apF +ash +asx +asU +atp +atT +aux +auR +avv +awd +auR +awN +auR +azg +cWS +rRC +agM +aCO +aCO +aCO +aEI +aFw +aCO +aCO +aCO +aHG +aHG +aHG +aHG +aCO +aLj +aLj +aLj +aNn +aNS +aNS +aNS +aPd +aPK +aPK +aPK +aRm +aPK +aSo +aSo +aqS +aSo +aUm +aUm +aUq +aUr +xnn +aWn +aWn +aVn +aVn +aVn +aYi +aHX +aZc +aJD +aYi +aZD +aZD +baD +aZD +baT +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(105,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +acc +acI +adm +aan +aff +aff +awX +aff +aff +ayC +azE +axP +axP +axK +aAI +adK +aah +aah +aah +aah +aah +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aah +aah +aah +apF +aqP +arl +apF +apF +ash +ast +asU +att +atU +auy +auR +avw +awe +awO +axu +auR +azh +ayG +vDb +aBY +aCP +aDu +aDX +aEJ +aFx +sya +aGx +aHl +aDu +aDu +aDu +aDu +aCS +aLj +aLR +aMC +aNo +aNS +aOp +aOK +aPe +aPK +aQh +aQK +aRn +aPK +aSp +aSV +aTC +aSo +aUn +aUp +aVd +aVz +aUt +aWo +aWM +aWV +aVn +aHg +aYi +aYE +aIM +aZu +aYi +aZU +aVH +baE +baD +baT +baU +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(106,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +ace +acK +adq +aan +aff +auq +ady +ayd +aff +ayY +azF +axP +aeF +axK +aAI +adK +aah +aah +aah +aah +aah +aaU +agQ +ahp +ahC +akI +anf +aaU +aah +aah +aah +apF +abQ +arj +apF +aah +ash +ast +asU +atu +asU +ast +auR +avx +awf +awf +axv +auR +azi +ayG +vDb +aBY +aCQ +aDu +aDu +aDu +aFy +aFR +aFR +aFR +aFR +aIr +aJm +aJV +aDu +aLj +aLS +aMD +aNp +aNS +aOq +aOL +aPf +aPK +aQi +aQL +aRo +aPK +aSq +aSW +aTD +aSo +acw +aVS +aVe +aVA +aVQ +bHR +aUP +bcT +aVn +anK +aYi +aYi +aYi +aYi +aYi +aYi +aYi +aYi +aYi +aYi +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(107,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aan +aan +aan +aan +aan +aff +aur +awZ +aye +aff +axP +axP +axP +aeJ +aAz +aAI +adK +aah +aah +aah +aah +aah +aaU +agS +ahq +ajP +akY +anq +aaU +aaU +aaU +aaU +aaU +abR +ark +apF +aah +ash +ast +asU +atv +asU +ast +auR +avy +awg +awP +axw +auR +azj +ayI +svZ +aBY +aCR +aDv +aDu +aEK +aFz +aEK +aEK +aEK +aDu +atm +aCQ +aJV +aDu +aLj +aLT +aME +aNq +aNS +aOr +aOM +aPg +aPK +aQj +aQM +aRp +aPK +aSr +aSX +aTE +aSo +acz +bcT +aVf +aVB +aVf +cwS +aUP +aWX +aUm +bcD +bcI +bcK +aUm +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(108,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aff +auo +adG +ayf +aff +aAI +aAI +aAD +afy +azT +aAa +adK +aah +aah +bbj +bbj +bbj +bbj +agT +ahr +ajR +alu +anr +abJ +abM +abJ +abJ +abO +abS +arC +apF +aah +ash +asy +asV +atw +atV +auz +auR +avz +awh +awQ +axx +auR +azk +ayG +tNJ +agM +aCS +aCO +aDY +aEL +aFA +aEL +aEL +aEL +aDu +aIt +aJn +aJV +aDu +aLj +aLU +aMF +aNr +aNS +aOs +aON +aPh +aPK +aQk +aQN +aRq +aPK +aSs +aSY +aTF +aSo +afZ +bcT +aVf +aVB +aVf +cwS +aUP +aWY +aUm +bcE +aUP +bcL +aUm +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(109,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeE +afm +afm +axb +afm +afm +aeE +aeE +azV +azV +azV +aAb +adK +aah +bbj +bbj +bbI +bbM +bbj +ahg +ahz +ajZ +alD +anL +aaU +aaU +aaU +aaU +aaU +aql +arl +apF +aah +ash +ash +ash +ash +ash +ash +auR +auR +auR +auR +auR +ayn +azd +ayG +vDb +aAR +agM +aCO +aDZ +aEM +aFB +aFS +aEM +aHm +aDu +aIu +aJo +aDu +aKJ +aLj +aLV +aME +aNs +aNS +aOt +aOM +aPi +aPK +aQl +aQM +aRr +aPK +aSt +aSX +aTG +aSo +arm +bcT +aVf +aUs +aUu +iee +aVP +aWZ +bcj +bcF +aUP +bcM +aUm +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(110,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeE +afn +avk +axc +ayg +ayE +azu +azH +azW +aAe +aeE +aAz +adK +aah +bbj +bbx +bbJ +bbV +bbj +ahk +ahA +ahk +ahA +aop +aaU +aah +aah +aah +apF +aql +arl +apF +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +agM +azl +iti +vDb +aBZ +agM +aCO +aEa +aEM +aFC +aFT +aGy +aHn +aDu +aIv +aDu +aCP +aDu +aLj +aLj +aMG +aLj +aNS +aNS +aOO +aNS +aPK +aPK +aQO +aPK +aPK +aSo +aSZ +aSo +aSo +arD +bcT +aVf +aVB +aVf +cwS +aUP +aXa +aUm +bcG +aUP +bcL +aUm +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(111,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeE +afx +avl +axd +ayj +ayF +azy +azI +azX +aAg +aeE +aAz +adK +aah +bbj +bby +bbK +bbW +bbj +aaU +aaU +aaU +aaU +aBo +aaU +aah +aah +aah +apF +aql +arl +apF +aah +aah +aah +aah +atx +atx +atx +atx +atx +atx +atx +atx +atx +azm +mRF +bMs +atx +atx +aCO +aCO +acr +aFD +aFD +aFD +aCO +aeL +aIw +aDu +aCQ +aDu +aLj +aLW +aMH +aNt +aNS +aOu +aOP +aPj +aPK +aQm +aQP +aRs +aPK +aSu +aTa +aTH +aSo +aTB +bcm +aVg +aVC +aVR +laR +aWp +aXb +aUm +bcH +bcJ +bcN +aUm +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(112,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeE +afB +avQ +axj +ayk +ayK +azv +azH +azY +aAh +aeE +aAz +adK +aAW +bbr +bbz +bbL +bbY +bbj +aAG +aAG +aAG +aAG +aBp +aAD +aah +aah +apF +apF +aql +nlo +apF +aah +aah +aah +aah +atx +atW +auA +auS +avA +atW +atx +axy +ayo +azn +bSx +raS +aCa +axy +atx +aEb +auB +aFE +aFU +aLK +act +aDu +aIx +aDu +aCR +aKK +aLj +aLX +aMI +aNu +aNS +aOv +aOQ +aPk +aPK +aQn +aQQ +aRt +aPK +aSv +aTb +aTI +aSo +aUo +aUQ +bHR +aUP +aVS +aga +aWN +aXc +aUm +aUm +aUm +aUm +aUm +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(113,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aeE +afD +avl +axF +ayl +avl +azw +aeE +aeE +aeE +aeE +aAA +aAH +aAX +bbj +bbA +bbj +bbj +bbj +aAG +aAG +aAG +aAI +aBp +aAD +aah +aah +apF +lry +aql +aql +apF +aah +aah +aah +aah +atx +afG +auB +auB +auB +aex +atx +axy +ayo +azn +auU +tLx +aCa +axy +atx +afY +auB +aFF +aFV +aGz +aCO +aHH +aIu +aDu +aDu +aDu +aLj +aLj +aLj +aLj +aNS +aNS +aNS +aNS +aPK +aPK +aPK +aPK +aPK +aSo +aSo +aSo +aSo +aUm +aUm +aVi +aVD +aVT +aUm +aUm +aUm +aUm +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(114,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aeE +afL +avR +axG +ayt +avl +azx +azH +azW +aAe +aeE +aAI +aAI +aAI +aAI +aBh +aBi +aBi +bHK +aBi +aBi +aBi +aBi +aBq +aAD +aah +aah +apF +aqk +aqj +aql +apF +aah +aah +aah +aah +atx +atX +auB +auT +avB +awi +atx +atx +atx +azo +qfJ +mOz +atx +atx +atx +aEc +aEN +aFG +aFV +aGA +aCO +aHI +aIy +aJp +aJW +aJW +aLk +aCP +aCO +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aUm +aVj +aVj +aVj +aUm +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(115,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aeE +agq +avS +axH +ayu +ayL +azz +azJ +azX +aAg +aeE +aAI +aAI +gYx +pdo +aAI +aAI +aAI +aAI +aAI +aAI +aAI +aAI +bbZ +aAD +aah +aah +apF +aql +aql +aql +apF +aah +aah +aah +aah +atx +atY +auB +auU +avC +auB +awR +axz +ayp +azp +mRF +rYL +ayp +aCT +aDw +auB +aEO +auU +aFW +auB +aCO +aCS +aIz +aJq +aJV +aDu +aLl +aJn +aCO +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(116,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ack +acM +acM +aen +aig +auL +xpP +ayv +ayM +bcf +azH +azY +aAh +aeE +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aAD +aah +aah +apF +apF +apF +apF +apF +aah +aah +aah +aah +atx +atZ +auC +auV +avD +awj +awj +awj +ayq +azq +jva +dZW +aCb +aCU +aCU +aCU +aEP +aFH +aFX +aGB +aCO +aHJ +aHJ +aHJ +aHJ +aHJ +aHJ +aHJ +aCO +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(117,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aeE +aeE +aeE +azH +ayw +aeE +aeE +aeE +aeE +aeE +aeE +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +atx +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +auB +aGC +atx +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(118,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +naC +ajb +awu +lMK +ayx +ayN +azA +naC +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aah +aah +aad +aad +aah +aah +aah +aah +aah +aah +aah +aty +atx +atx +atx +atx +aty +afH +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aub +aty +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(119,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +naC +amc +arB +arB +ayy +ayO +azB +naC +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +auD +auc +auc +atz +auc +auc +atA +atA +atA +atA +atA +auc +auc +auc +atA +auc +atA +auc +auc +auc +atA +atA +atA +atA +atA +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(120,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +naC +amP +awv +awv +ayz +ayP +azC +naC +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(121,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ajK +aad +aad +aad +aah +naC +aAC +avY +axJ +ayA +ayX +azD +naC +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +wXW +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(122,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +naC +naC +naC +naC +naC +naC +naC +naC +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(123,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aah +aah +aah +aah +aah +aah +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(124,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(125,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(126,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(127,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(128,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(129,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(130,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +atB +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(131,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +aud +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +bcV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(132,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +auD +atC +atC +aua +atC +atC +atC +aua +atC +atC +aue +aua +atC +atC +aua +atC +atC +atC +aua +atC +aue +atC +aua +atC +atC +auD +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(133,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aty +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +atx +aty +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(134,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(135,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(136,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(137,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(138,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(139,1,1) = {" +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +"} +(140,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} From 48f69ef1a5ac34987422442da48ea26a24cb3acb Mon Sep 17 00:00:00 2001 From: NanoMap Generation Date: Tue, 2 Feb 2021 16:44:01 +0000 Subject: [PATCH 16/19] NanoMap Auto-Update (Tue Feb 2 16:44:01 UTC 2021) --- icons/_nanomaps/tether_nanomap_z1.png | Bin 831054 -> 829073 bytes icons/_nanomaps/tether_nanomap_z2.png | Bin 728327 -> 740651 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/_nanomaps/tether_nanomap_z1.png b/icons/_nanomaps/tether_nanomap_z1.png index 614f2036a42571c55dd45188434479f994bb11f9..a7bb05e7bc460349309a1ed9b1e5d9b324274d0f 100644 GIT binary patch delta 531195 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Ξn!$1Y}p61R=Y7u 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%0Ak`z&)y@Z+M7eVVQFn+xXogd^*e5 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
#CR5hI;>z&(0;V7E+l2rq{nuVELIeSr0)oCG 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%0Dcct1}vXkxhwS=*2xF z#^~68O4M~OnaOTpGk$D`mT{(Od{khZHEP~|u=y}4v3pFGflkglGhLNr8JOwjHs2f* z{7PiCz9D#K@U055OyWHvUd#v7s3ah$e)hjc)u`@;AP2LPYuMvY?4}E06>9Lw=>dq~ z-VFur-IBn0+VRo9Ix8w<5nVuJrXt%BnMVo{!GQ#g`J%6eT6>-?@+b-d@}3u>G-+C% z;j2FXMB(*U3VM4+YW%Joh&XG|Bm4mZq?}^Onrp}|{LtQZ*0*UKm8LBv9rA|_5`Vq~ z>VyYc5$+|@07diblb%L=ZtW)|BDSMYJJ*2tQr}cj)ir561UsHrKY{2N@ILYU1PU;F zp!{OYGA(Rez5{W{YckvvOCsZH@BU-|Btn^j;ktr+dd_oqS9RoN-5GQ(gGr-NP{RSpmc5! z6j3@nAdNwXfi#CuQUQ^W1_6^LANeO%*whUsoO&6x*NHiE{;;!7qb(CoXwxY}Ns+QF&@|vMJGryy0XVV9M@ih}*wsxTWQv z68bS!5AV|yd=6Uvc;Je&imQb&Fm;4&tibi=*|XiX{QxsfQ3Q)VF)vi@ztXO)f`7x) z3M(Tw^n?57!;zA+#iw6ed?3g7vK|r59j<-{R>(nF8#WPuZ2~SZz1{_eL}#_Dg*Y$_ zuB7eB=2T<3xL2e~<|9O(F5IcT)xn8-AE1fy)ivtv>ZWY93)mgZNmNr27V1LI?w&j?B5x!GsKB{ln1E8G4N2d-xmJ z?ErK>U3<+(pOR3#ktf5)0R#WE3}$B4aCkk~U)u9s`!Ux;3R7LQW_sbI#HAIE>_qDAr+xPTl;eB-=sou#`PQ z6rdyaXuK+p6oVOy-0zVKN_f=X6sXh(v?BMP4OLtAE1IlL{Bj7Tn2vG?M;aZU9?l#5 zxqZ&8&J>Elo>H;^>gv1IH++MD(g6GpfXBt~4|``Ykj^d*x!`x2;{N^pQ92xq9D(Rd z)7|TEV-wijwIKMX69$``vtNlwJc&VPo69hl$yD6Y0~emyI~Nam-t~Oie!OvRnwZ2`)eJ1>k`avmck!JeLWH~54)j$aQ74S{BP6i>?s9#%ZFZy~@!+vfGYB&?C!Rfat=!XX7&TB^5w z3ShVrK0A>-3$?&QaBqtSnwm0m9P5r|qP)sPdv%jSb}O^{F@XQxBFp>XShtDIYi<#> z$Lf##sd4;RNwMmZ0caEpH@@l)lyflt5s{^yEY-{wZKJq1vJ^gqOoz|=Pv5iD?r`$= zs^#TB!>G$c#I3-)pyEH0xE5KdqQs#J=RCJ^*qlRYD9)B?**}h3CJL3qrRv61VQ^tw zm9WwAamF*^h(k0~#9op2Hd#$o%_Szha_Pm-aDKMAZEHA z2pl8P>_=BpH`r-1staoet+;V>cixR*qxifDvEC(mb3)0rLjK{DH^!2H+e{nbJ+rgG zBIUfb3sznJh41d2%Essd5H|65nfW)B*^_=}V1NGi6_W%VqYVXBOgo{!CEm@2pJ6PXFsti337s-4m zY&a+|$%>yzm6x_Z9v02|;|52c8LQtz3CExs|Z#+cU=l5DE|pS!8D;xo#@5 zdv~4>Y!&ylG2kv>tLlb#C&LFA&63X?I{Z!lNs4L2bI6#Dg~FJS&1rm2-PX>d2Tll<4oM#QKmZ@ie=ISkO6wz$vfV zR~47OBz+~&WXdE63I`?!K(+)f2fO7(+uPP1bQu7d|DoFNzE439e3l=n&*PD#ERkR> zLBZVap#58=1p*M2>g-?Orhky4e7(V3Pw%YdYc;QnPko|SOO#8UX zspnf;*^rZ2U&{+}=Cz3Xg##yiMTACwa%Zrk0TqY&KcTw6#e+S$QaPkRYZgEyp3;_M zc+%uFD+h~`6>S8S4=!$X(s=aK4w)M~eF59p9c#NdaK+_>7W)y;1vp*E2?ll5DSPq$ z0CiV>g1T^V3P|1PXLG|2aM0~~09(_<#%*bgI>BHJ>%*2|5K>Z(mVojfm;LUEh^s$j zddzUcA6BH$z8C4K7lxNNM^e>f&&I?Ys;%%9Odo%jdKl5l9pYj5F)zW%c79D-WG#S1 zLgPXzPl*i&RXS)*0p{t3qW;;`)N|c&5u(?fv#wsemv_>m2{ZBp@416D%JV~10dief zBp4r3QQ$+WKs(z9(xGFb2+Fguk4;0IDfE(Gf3A6aT0}B?hKU%<+zDr3eV~zM`C=rC z2F6chqD^}6$45u0ng)-OzOVOV3^$lOd7n4-RrACv5!_dFSo235C|J+s4ar8mzpM5r z&BAD!TuoZz^J(7xGY8hA*fr$XHetW44yJq>i=j41Z*yxGsT27DpBN9vbbB`h_K66e z!L$g6zi)Ll!zeUiKQ^Alc6rWjK6s!dT7KLLU{8tl;pE9S@gEKxVBk1qXGhlLz-vw8 zJR!vf;l;B@=sWOF((0$OZQ?xpNF3$Rs$#GA<+wY_49e#YERwgx@sAo<@qDgp?>k}J z$Z&@ChGZhy&%wrFGH(lyv}=Cv{YDE()owLcpZKQr_MY~uNEJl}jwPx4lc#CTKwLdY zY3e-4s#o$IH&y3c@gSJQ5+fg>Zf+5eZ<%n0;fTOwrGsfRc$0;=p~I?8gL=R+N69MC zcDD?hu4hK&O#1dDE!Za!uK-9qRYt*>odyV*+D;NabZ%b7H1Qi~4^viU^G6xF^{bfbL zz~S5wL;$X<1KE93`;%s(;3^5O{S(6d3wb<=<3T&0=kr99EIMpp+X)0?jWC2PvQo4pHRTQ~5+p&UOUtoPu4dSE3 zeXoYgqQ;Hgx3>;q2y^W8ekQrH%D=3y@wNaQld$(1)6Z9DgEslU{_fo7vHLY-AoVVa z=RW+492;-JMMVhQ=cRok47gvqzjMFu7xn&``z^ikZ``lh65xLO0rv}0Jz;R@l>0aC zmk~GQKXbnz-(ah|OTNf+ls?4nW$D>p%r96`7)2eDeeo~aZxHks?UxVNd~Km;8cPsJ zP+Q6S{h4L(hX8JkG!m-rE5^ zq~h>au+mZ^8LD`*(ZwOc)~02`KFqlA73)vo7uJ2D|C#Wc^M5J)!n!ZS{!hYhpG8{g z)`WNM2nqg`1FtaY>PfvnPz<3%9UUEauR7#7l*^UueZBIiMoi-=9=?ataRw%a&koua zyGi3S1QAA+5T1@*9~~|^!@fa+CjFzC8PA8zVvcd%6@w7&Bv}kcttv9t5_tZBN&_+B zRt(AReA}o58_2EQzkU#h@K+hKJ}sd|p;eOI$6o&k2ZP&j58?5fXaT97;ScNO_E5&= zoQ@p6An~gem%kb%K;3{Vi3TEX4QsdolR(YO(X9;hi`L3OnmC5nKRQ(5g!}z&Mp;gn z2;x9}T>e|$7Jl-(Yk(cr9GBq|<2kfvj5B7h_4nzMvc=$|p+&$-~*ow5qRAKay zcoFx((aDKCtTnxsmbb4)!t&@UNBD^dVqsP?4mNy4R+t?QIQ4XFEP0|u{n7Mzr<)XP zZ2_A1+<{^eb4rBNVS--~N)R#i8CBS$WpdA-P*6PzL4!}Fdf4Jj(BqC9;-&Aj`Rl_8 zT3UG7tshw7Op=LtadJU&-Pn;1h){@_3-V3D0e%XBbLi58OUJ^Qwi6K&Ep;zFQD1KR z6gcQ}Z;|99+7jc}4%FZA-H&x}^qS=2*A@^f@;|a%Na)+QT<~L?*tcAO{-ftY&EGs1 zfaQYhRqu^GrdyoVb@6m^fsroS$**sYo|2-qF%Nk|Knc!J24&68zHZDZ3M-!2s<&{lB>sZ zzVJ)peUgzBBQv>=w1pz_gJ71Pu#_yYFPT zG7h@aq#DkIJ&CPWoO;IC-{6cZbsHyTnNQM!d}3SkT$MH0y&Fk+OecDeo~0a;B(!;* zq?Y5qSe-248qgG7+=A(v0t@m&6bKWQ#{Y8t%oXT#wS^p2tsfg6?reSi{b#OZg}|)i zW0uX&?mv2Kqh$V47mQ%5i)p*Z*7@U*)0)5#JBVAyL|@@Lyu6QZmCNymkn6~^8NrCo z3|N!fujnwrQ{Ce1Ctu7FHM`wvl2LCmvy@_l^lu2gb7(0WDe(uvQ@PaEl%NLD6Qb-w z`x0IpRw1-BMQ^jMRJQ!MX^WQm7Tp2kSJ>%8;Gtc}hu07+;ey1Wj^0U=A1x#Bh?cLJ zHcy&3Pw!VCfab4|-P|ug`d}B!Iv(EBrzf2WA-WH-c!%)(9B~5)E{L6ZHher=>g-Kx zClECH?H~ss>e6bbKSERN1chZnS7`!e^EE*#gWl)oyCf-lFa1cW0?7lgLLr-r39QOi zVX%BmC-w&17A*bl?cYn-xaNvM4;pqVDDxM+#0pjv@D$KrfC@`u&I+@x>0}<{HXKNgx#lW%-_eH7998cYx+(!W34#T}^W)D{;up%t> zf4DS({En=>JzK-C*8*D=WK6YRLp?HjpL$F>lEorNOPX_YXUpY4`)Vulp05*bsg_@M0sLxT7kQb06ILgpw#9 z*H|ze4}U+_=XVp|Px5^N7{ORzq234siBXSUrYl!5P-!emHwLgh{Il#!>MDl47#I>SUA#y=SVfz)Yno%tB zmr6jpPHFZ`LkgU%cN>hNq0+e)86*Trg(ziChpNVB9HM9viD?ZRdRE1X{1o zTgutTeIgs=B=b(B6R+T{Dy3bFXgaN+!f<+$n%^IyN?!X{7HW}(TxQCro{sdVjpkQTzGaA? z{in}EonOceF|*_L=f}pVZRfvTkj5HNh0$YIf$MN8)WXn-BX8=Il-8)z<5?Am*q^XU z^R7aI&nZGCD=n@nTTx50P-!+6w+#;rWbYn32&n&Yk%L*!8Pgr>I&7Qozr+fdJkG;7 zVIq+SdWAO_g^Fu!JPw?!e0+AJ`uG%wRKmhkZNVJb#~i0gbigld4M-X|h%1huU$l30 z;w$p-10^lJD304r`nE1yTujXmo-OJ-nyjv`p7_vZGYR1133=Xsfsd{B;o}6Ze}Rt! z0esAt|2Oy;O4_vV@+oim+iW#S>l3|vXDCDceu$#uk>KTrx8k0e!bLC}H)TmSEh@fk zO^J`&`JlV~pRr`92GFPFMhxBof6;>}J z9}07<+zORX<_Mlw8(3Wp0tAJl?*#g58#F&<)*b?zA_VZEx5H(-_f5>t za=ht(gT99_iJVNR#~r7Qaqqw?o58B!LxSX|xive?v<{|%sV(?b!3em3BY+JlzFi7W znsO>@8kk6l=4mENO4NzgNY{IBL+G_!i|y;Z$d<*w`INlB&hc06zt&evIP0VfR)(g^&yn1Tku zhzg2@FD z91oV3*;9I#SF_d9g+uk?Yx*=*xgzD&D(>ICeU6o14$qJ9!@65L6%Y9+D;C1}E8ZS- zT6m{qdm(X*fM9Vf1%f7>#LT_`q0!gZ#Y6R@tY_xo;AhNs4CZ%nl*TPyX5tfE62TQl znJeDMru!s1B1g$7E5$w+?V2tfr!8Nm%d2|fd0BbR_Og9~grGhvnR$PUXjIm@J;y~s z&e8$d;di?|Dxgme5%!NaSu#v1!I4tBjI404d``YBQUf6q3NBL_0N9345^RmxbOpw{CCg+E>zRI%u)x&h&6eo_s(hz*SF7yIh!HBs$qSFz02v5`=Jxd!lm2 zb%YZm%?5DXxS?pGnfh#Bnq8SUIUoBLcw>OxEnEbFfpGAs?|k}Zvqi9SSlqWJbecOtgcp@1HRPo~tz@Yg7)ryn4J z=ucrdj^uu0SbGZRg=}ev4*`N!KMZRB{6Nlvj|Z&7`+Ef|!y4BN@2u;coPR(?mv$xP zEURTLN2JF0C2>Z=yW<}ZpNaF6m;5~Srf*{`}O!*tid)gC17V_7=-i1MyGkz|$b{z|&v`cpC8ZUGm}h@GJfa_RIt? zFP#7M9aRt-{?K2j07#ta!d1dkQ6ZHb@gYT0#mQibR^tj#6MUKR$3awde2Gf48H=WH zxrJCg@>O!7-xy(cyYg`Z+VG3`W5Pq=y1_z@Cyz2Az#GE~a7MiO%;zYmW+qIIPxQ>( zz>k!oNWvdCk|GSoQ=#2ummx?yXA+a|F+2sZcr?r9_2Cao#%;j<`WEzs>3HqD+~Kul z9v1r{mmLeR5=_5bU0L_$y;xvB%f^+?=goEo*PaDDY?2kyaB0vjZ3|x$m)WImTm^Q&m_omMVq*va*q*JRK(`+q-gWv7<7u?BG!owG#d`v3bg4(@S&A z2I^S?_Lt)z*2#NgqsVkX8+edK23xinm_WO)=xM(r1{X*q13qOJAhpN{Hx_HoF=^Hl zN^VRD*mS)dE=|Y(OcZPULCs!|&^ll>zOahAGeu4H>9cdjCeeBS;7foxZ+9+E*mS5? z+TSYG)scoQBJMBI-=DtzMjbY0rGEDoB>;?B8|ry-foLEb&J}TthUT5&RiFMtcR$g# zvd4X>7FIKhunBw>`RU>=KGzxxyq2lB8a7Kn6)%OV=C>(Gr+Y3{?(aY7XlVHo5Duk{ z(c7k3#rah?PC;mgJ^jk<*8XmkLx39;idDOY?kq!J3tRBqJAg;4G|XZ+CvThrrvAZW z;1@Y4$81ia&jP8DSH5_E3j>UPi4^j^>BP=2RG>h)d8iC;9?Oj`mX_#J3gh$zCI zb*(9x1eN+zPUBBx0!9V?s1krhGQ6t;Y3BHnAx@U=Nm~v!(oV{b4PYKH9r;qoZnNX7 zrHk#BWcM9ZPzrd8ybX*3Xiihuv&y=;aOub=g(!o~0PrlZ@Z-bDK zF`$%vq$F0OQ;s6m^ilF;Jc@w>}*-xZAny+Z? zL5s_RtOdCzb82c)md!ZAX-9l0ZMMOvv8!nEH>_@N1#dpPvAx1 zq3Ir2OnX7|tJlrcb^2A>?QB-|0~@**kWPC0flR>^8G1Kfm$`yKrWI=) zUgUzAvyus1gU-4}Mm%s5lYacw(rSZ`mRw?0uQlSK0jG)Ij)=5XB)_ z^M5nE^uGMobQ}>aVZTXLqy`gw=I=+tZ*tEgLDlzR^V}D1E#`g|P#s!sJjDby4XV5# z2b>fKlPdvn0WL(;7vRhhFA?u7~oXDdN#&Ptuubv6CPxNWPPnS@!&5Kf`uX zM)6I9zs0nBv|v25WoCEy0*Hi;Ja%>_Rcx&`%{;C&eHUyfpgtn6<6w`#)X4xxtac|I zJvCTaX}oD9!U^P?iNHd#W7~3@X1veI_UlA3*6Qj|ToBR{Xhao)E#p@~NCr$%X^JKH9}x`U7!+>0`GauGaWMIm zG>AeyMA=$d8SWXlERQXfY%TV=0B&Aytr_8)L(C5$DQAx1TABpS1g2Xwo}B^%)qk&I ztWJ*MoV(3O&mj5YoBdEHT&-|eKDE_ed%4Fsd-F9)c*yy`_=15PKkwFUFPN2G_Mmh4 z`33s*?T_#1zJ)_u1$pH7AH`TpBm_%PzmzD*rWhS-0CGP*?s48Th`Z$8jaN2<2QGK7 zR!U&1F)p>AAs_Tx(_uVQe#Dz-iXm?M z^X^6-rxIdg*jX%?+3tVby}OMq-0#~}4zXSuM$Q>XC$FCx=CkRU{*l+c zvDyb`_D+4h=bQ&wn`K1rTF%gNfAus2%uq?a1*_JeqWmo4a17*`IA%FSj7c_FD7W&JFGf zIJ9-ORwnH&E6e&Sqw_K_HPCp#gz*B@crUzi@f9;4colylgh>D)%)uapMR)v&`0MWEGLg|>G`yeq<2$wwcNk(HV1zk+Aw@R9QTQ* z_)?=CCg_MtT>dj9VY0L~g0W#{&XOLZHo_(eT;UZr_3o8n{1VPJl1QQhny4*OKlCJW zgb3Ex8r?ZpSJ#cY>8c0fX{=9y%c+NkS#Ivh7OQ&$%Erd10#Ayg(4(&6w@YiT!s40i zk-W&)mwd|I1Y>ndXP>yTvVzduO==zsl6)cGIdHzFS1K$=Pog_d^fP3D&(cT@DO$HZW)A5E4w{*No2QGPb5M$ z^G;PJ$P=&3Dwz&*$+~mf;6Q#F$^r5dwBe{`J&Ayo4PRv9zRtlTAU+<>i%x%-%_O9= zeNUdA^r2&F;eHSDEnEu&T~P-%*;HiDYUooEq_jNz6ufvfHM+NOa5v-LRpZqIa{XZa zMyWP^o7PE(c{DOv;WInLT1EMrZ(0SF{B-byaxqkKXN}B9_Kg?19T@E8Ns;cKbQJI` zi6}Xi`7Pwk@>l|L*VJ(TGJEh)nU@>;ayfmtu`?^Nw;!D~Ixf4roC2Py*v6$`8eW?= zjV!0hwudM5U59!y?#y&KUh~2+H*VtZHJ1-@KOv-F9TzkRd^PtYPoK(G6n~ca)m)sE#$>y zmTDz@!X?|`!RFCm#ZI^%979{5O)dDTlp>jq3r``*FxU4DRZJuWj{`d}8UMLZJ;0i7 zbq}*r>k?RU=5|OhW?hW_@g$Ac+9)?9{rS=f0Bz~HxfL^# z#_8U!lc*QOsw z8rXLhtcA06d7A>S>T*vBdIXs#9(GkG?b?@y+9&@}8EWLjS16K^7VyUoaAJ>dA9E6; zjNlp0s<@2Pq*2Xzm}plzhsS&Utf(lLUXg=24nCDxs?tS;3PdC=$x+0}ArcB`bH;-CI$&!cl))Kl}tke#9E;cn^hs+;Ug@XIZ@6pAl@sh zUu%eJa|jd~>0c*PS9qsO4@O1Re2-o{i`kIWG1plTW5WeHvc`KwOBaQ-zrnddy7dO! z#!)W~B%)tFp6qs--UwE;gC7}797{k&kT$5&&DN=2GvMZ5EXXCR?-x$h;wG?`8$Na4 zPr9igp;B^-%mf5|Lf{GV&Oiam`T^G1(RTgx;FWi4WbTyBjX^=-m5yCgduhNu&B%im zSXP#ZW8n?@_Dm{ER6Czt@I;^EhhH1#tZ zTN;MLO_*e#3aK|){~ZOWI)NC>XIwVX$XZzq&7XL@nDZVMZcwH7Or>P@WXKgk(x$LmTTTe?dah2xrDqDa-F6;I1(gk;|6TlH5RM<~ zfT~cH!%=x#w(xabOUBT|o+4wL<<4kN1NX0EPFZGiamnrivLp>&SL%l3f{MK@YZ1YA zf%0J*SA2)jsy!JI){!~_3Kuatj@c0eGEuL=ck&^<29K_*5FaL{r`x7>OH&)-3W zja|8VHKOU^E|HPO6*DFu+US=dhiPH!Nh@bvWX+>p;AWo%yw5{|v2e#PN1kK-bNTQg zWU|BpFx%llf6I_)R`^E&2=uj)H-Q0$ zCx-DC=&?DzuW{gnsG~RMp{X@bwg+(CfpH-mb=k4%BZrsI@c6D2liSi!YP!ie9Gd8%9UFV<1TRw zglYELVVJp1z^60?MC_j*s+MxCghJzfCI{=SWu8IDf!7OMqJ|v>O_1x zM8W}~x^ohJ>ZbNa537vdnlK+RW-_~Lg3}28RV+f-H|F+~EU2O|6~K6{K*s&m4O+{I z19<};QwAF@1#p7ebNOqdgDjp&&M=3OLa(w?y2yLh%s`^#M|b0^vVkoRZX09Z%Pi<7 z!q&s^HIZH!m1arY?87 zaEk^wMCPfK9_gflTxlMipXsiXnVIl9zqg3;vKeHrJ~;3J8a}{?b=Mvo^c;W^PjIV5 zv(flk?pWQrIk3N5`yw&(-9fCkoN%&}X79;hMVeJ^f|w&mfF^t2jz_UwxW zUC_}XtYc?9ese$mCNFVkbdtm-w7ZT9D2YSYL$cNI7Gq@WgE1y0RQFfAaX&>L$C`% zY=+SC@X)6(fnQJNY&cLoQm|`X8)oku70^Ka{wA6Er10_pYPkbk{#~F2{T}GZ$gVU?y zn#&w_;H#;YXS%*iFQ=z3Fdjz~J|^abzJq?2K#V03(`&qN)8lZ#e9}Kq)ZLtPeu0IO zEKli{Ie3tAj~M?@L33#!ka3Lxm%zT=sClqn*WtJ9QuMLdrJ%JuT)t z?gr;n&|LJ9rt0N+d@5QaMZ1Ciq9Qn@9zdhnRV<)z{to<+^qKL8W+1G9ZQ%9_{^MO1 z*kfkF1rDLH=e#so_+}WurloH_L&7-wg>vAW>t^f+p{839<`hF!V4`T=fGC<@=NQ6< zKRY?uKFfP?jxeFU_vj-o5w9`J*qx#CbHULn8J%0GCvc+n)#KUraH6*Fp~;z3{YMer z)x`AH&1MRuU0m^*kDA{xa?fT56sOY?kqB!8uS6qp(&2-W#sf5Fnn(y8ROjdBnun(q z@wo-JwzgKz8qVTQ1Z2e|R|~>##JQw;1_D}*#ZiaTweLu{372T7%yzPAPCQFS3=@*j zAyR2c@ZoLu5R}>Dl~#tQQ@&0C27vmT>#AWd#szdLliXGCS5bDa!9Qu7N;3;KyW@Qg5L@u ze}C(%f)_tMtgjEt!X#^Bd!UkKRJYGgK{6;mT7(kHj&99_&WWuY+0R_?D1N2|Posk3PDj0~!rifBair$SKL%+N?O5G5dT*6@ zh$q;7(=M>$sF3!H4!Wd#gFW}XNcv+S6=oG~l`~V*^xwNX-iU=(B{XzPlcZ1N4|V%G9&PbMFEIVp1YHsP8pzJ`p7uEy3<6^Qa*%^Ad%hJ zVgOyRgCd`7xss#A>Jh$4Oz>Y>upH1 z8(LpdsQdFO5*_O~Go1i+qt?;i9J()w+Y5FmmcTq62%bUOo{ zbDg-Djm#jhyPb6_%Q8@?E#J9nP)9UcLx1K$GgMx#xpULPFubUr3Bm;7!2Rn*5XC*s zAxaQubIL!kDE8YVjg_5gqbQqI{jl$)TY0%ti)R))r$X1Wlk#jE?kSn&y)ZOIPDhd7 zGLR^(aaORVdB4c@r|n@h4@DZ#!c0pui1Dt zOkwKc0dVi?aYOgKa?uWDzb|)ER$`(*!z6Ez1aO8|!DuMB?n@!$?ik^4e_yjC;zaB% zBfSxjI%{vUq(3MFPESNlhrM69Q*elGGRD=d$fV?k0_%?%adOJ^|7WkX86cD{f~R74-yK(dIg=D&2kdu0LHg?Rg;- zIr$4)YTCvIPH;9;N*{vPyp97iU5XnZ*1;vDe{OKFYuBUr0uwD?#C^8f326V(^{(75 z0KF(D^!eY^s{fT(B}*5Y*%eAw#P4+1@mjDtGkY=XE0S-dkv$wP(YUy_)|K?u_!EbE z8x*;pj#N+ALQo=|8$DDWHVpTslf4CZ{snNFS5m!@wUV4rTR6Vc!CAqifrhYt z9`;N>A*7*8_8n%d$I6r8e)j4-QtkQH{W#M|mGP`?0f}}0fdZ7zz-wh9$X}c1SPsiA zJnQkgrUXL4xnBa0i=Y3MN^}5hkylBMrTwK32Bqd?0UZx3JhE5$vl1C?%5`;oP>JEz z50%E_^9?%MpTyL}AF7pNPrQ78oR*|Fm;OS=DoTleM>Z@(G8Adtu&`fN)B5i1t7FiC zJVp-7V*r^VVWRF7Adu^uHQNZK1JMyYhqRb;y8;W(Uf1A!#m8ieh-t3tF%cOjqYrr_ z`rG^|MweHPN1JdzWjZv%h}D3-bMK)=%*i9f5_ccuF{ZTv&p~}n;AHlQ#B>T7|DkYv zKF4q%QdO5U(ALKj2N!=vQ8=w(5(W!I)!VE6!dzdxKVDf{nzi*#bL6PP63<~GX*vQg zoLLgV)C8`GKIy8N&1eeIg-SH*faOMV7j>0ai71;Bnhl4v^Eg822niEnv6Pq?f}}x> zp7}4gkdywM_UIF|J=9wNkRz=tsdL?|?Nj@mTKZsP} zy`1EoMR#vGw~+7OM>cyon8+pAFxlLOI7AOYQ(9Hx($PH6r4hW*E?hRN(93N^CNiIr z?Nyu1R#g9(K-~}L4(CVrZDi6OUk3Rx$9c#2qU$BTPifR&Nj7Q&pCy*X!A{83;}uDOxATh)lj|%nH5Z6KNOp%5>kn0zLz+VDkaT zpAOvqS71Cc9mxafZcH|xmu>~AGMMR7VC$@t^+vOY4{}H6)29Gy6-<5WTdp1P(xoeN zmL^e!(v>m59jVk%-#J!r>*c?zUM)v%sl$#67?%RQ^TR#0F1xs zxzokrqLG|(bL*`8l!?ON9$EYcpt+cC4mp6HsK|j1B~Tpnc~|z-@;z=H@Oe;{S~FQP zm9Dc^#8N27Mng}ZdLkXKUmpC@t|{PXCI5zo#@Bo+tc&(YqllQ={(sBYToj=*nw=yW_%1gmuV_d$}gU_Iw8`VeHO?3 z=E!J(An*!7?Di260_P1tK(grhawm1pbU#+->f*pZPrGS$Jw&Ozvv!9=TK*;<`s>;$ zmz&h8!k+?`hyFNaqkh}t1w>x*sbPe;013(C9AXM+q9CKST)cXx3AvdS_DWl;2fb%7 zotNWqrDYhMfYgIs1&b1;HXWY0g<>tEKCD~gJmnPEvIBX87Z_#DPaRl+i`#7$*OV(& z0}%|U*g#j^Hbwippnt2IBWJT+mHg|}bmw0R#XAN@H;)yGR4P(IjD{LAL#;u}#LZNr z&z09+R#eTuYhy}r{o~|B6dfX*o~4B8}(Nu?>pL+#M!NVSCmYl z(Hk|D_{4oiZ;&u|q7xC4BQ5?iNula70h{p<|95I;M%A3T&Ht`$?z_#M*%Jl>74r*{*)(3ym?|Nj;~lNPmk{m zES4~rte}K-z;?D!izO2ZJ|OJ4IUeD;dUMmacN+1HkmT@h^1+a2>}v-wi*is~16fz2 zT^*|w^a!xzi&=pE^ezuVZu;iX>Yg%Q-1$wP6U5;UPSTC0y}zm{(esc#vZ)1Z=Dcjy z55{pOkBXI(s{0nq;@%mBq*6+^R+~RF9C!?! zkFRc2X|1ZDrahqYXbEU(o3`O&b4VfRHdFL%UjkahK_N1+bU9IoSSL* zhJ8XuTltIe$zyp&6x+Fog`=Brlh@@D7NQ`X_!tB)pX|{YotDx>R}FdHV`J5Kub&Fn z*Y6~vL!Y#I?b%8h#%DNB2#wB0%`Wt8JCDjTB;e%_yg=zpb$azKACfDZ&w4U8aqTA_G;N|m@G>k*8%c`aLfz~F7B zq;S8!mc0%e+|6M5t--DJR`VOkV5|VA z8yRRTytr1Nd!SWZ^|Sr%4TSt;; zdUZpf0R(&RZS=$AvK}*lS=y6xTy`7Y)`r2-7a9C|{B2itrKP(H-+d%ZvVLi(1D6v` z3&x$vV!_U8c>)DfV2rf+Ui$Q7c#PDoYUq_Q0?kZ93l%OGkaEA%HjWA|%hdQ_UYjrB z&i62_fE5?m1-^`}TMQ-S#9#%$F*>fo&un(Ezdsh)6-=sOW+u*dGvK|9woIJb6x=hX zJmSDeDOhtCuyOaDG}=cBKo@iUr_>NcDCpbu=!lNiThF)N$ea6nWG@Pll1WSg_X0_v z&Y4PWz_bkhtjaJ}G*CM^YktLTEJC|&_~%`ogEmC?C^O%&t|yFqyz9*DB_lHDm}4ST zn|!l+wyo@68uDf-=j7N*MSpU6xk5Glwxx~x{%T3t;K2?#4(@Jy{gVbVPxJr^-iQ5d zI>Er1!KSpLBE5p1j_xs9Z*a$5Dqp6;)fn~_tbB!#?*+3g@LdFiw3v?xyeoSz7vD1~ zk(NozexZyLx9AP+*3F61)kFzjiw?}u9#>s0%paF|{k)}RL+8N9gg$>(6<@2Hx@65V z-6?@d`>EfzB@V6yp6Jz~O8)z&HA-}oA9CX~d7IZgU_Z{oVp8Qetu|)@hDA5QK+m3C zPJsMra>9Ia(($JL=7dq%o$pWkDhD2tE;r|Z)PrkKR4w0!6H<0KLoPVOv8In&1AAGw@c!Oq#ZKob8I$O~=$go$GEP@>G z4~FGk2TKNWydf>-2{1s*j$Q@fH03bL%ic7uYwdoV3)lyqw0X}O84;r+c_)H7@Z|iA zcm(ogRn~oF;i#ys9P!n!ELC}0htqB}mvi~(Tt7m8cy8+PmF#ct1ES|2lT-iqP&`Qg zom~9yEM6jp#RJ^X)tfZLQ5?8CAn@jInr(r@T>*r8UlV~tz+3i;TV;C@bssJok}MJEvQFOqQrtT8s=FRH1--6pgqO)bE|JE z-ehuzfd=|8a{YOk(~MKb7yu?_HdADrS}|`P_#7w3s3i`QFd8tQJf#}kp-!Epq6oVd zhIml+9wI*#Z}sYmvhL6zS&T9sT}W3y6Y{5!3v5fb4OmLWtEKFSICJyP$Rb&dwiT*~ z*iP@QB|x@z))!#=Kuw1VgSne}lFVmt>_pygZMkf`GM;*d8522D7aWu3Pj~}k)(YZmBEZ6Ktt&AcOOD_^)F<;DiY52uKM{z5XhvnKH7u|a7!}IZRbyg-W_2f5p`uhfS zIV>%^QP1BuOn0uhVTMFfjEtbX-N$d)>&%GKuG(MVc4~?8()RK35zZe5d|;R8sY(ft z=@@X80vR^=N$x#d*I9p{xxbUUfBZ8#?%8$I;a$^~Zh4W1v^Xz!zQ;JEcow+|ykQp@ zyCBN<=NITNKmX5utSjO7A1}ir8wY=GT}d)>=CBlo!bED6J}a{nsvNMBuNOBgBW&e* z(2>r=`aE}k5AVaamTMjRxApzJgU=qjs zL#iWX>31H{fa$36Epq(07>~!ecW0Ja0I4{%x?{{F*a$a)pqB$rR$h7$b6in0_jgiF zFVK>FCTCc6oWI|&wejR_yo@8AAPFAf+$fLgofHrc9X4)2gNGLZ$cEw?kbr~P>+7I{ zc^}QBC%U*=3hheIF8R0nTZGPU$RWu^^drOYn`wwK5jgdsT3suW23>O8Y0aDIvP&|LkzHvRMGivt z&Nv+B{9f<(p){`X`Fy^=Kdx?FUAJ3xz0Ui*-p}Xb`FP$R^uW131?$f;$*#@ZRnKEl z0w;rUy*&(l$f_$OL#Y2O7A?i6p#Z)qF{j>?-wDP(|$Z*TfdI5kRvto@`e_>6n| zteZ;(58_&)1B;Ntb)RC+ttfiDsgpd&Kcm?$dfry6u_ttc1sBsBk%Nw*SM3eL9)9rj zxX*)yIPR^05J>P`)i)Dr;7tR^3esA=z_*pWFYO7+=mU`XJuCmE0TPY7oU~{O{v!R} zw4R25f;)_D6k*p6xjr~J9(h8-bnFjC%*2XwF7-9(K(J(}Iy= z_DO}_4vTI^Y;`5~LuAE`2^dwk2)-2k-C8CEwCRx*GSK*!@AWuExfxBS`s)!N&VQ02 zz#JAQ7g$_U++w)%L2Bk$z2fZ5X9nRdPsiSdM5{2w#OOgf5vD;R8u-fo^Pe&@5~oW> z7n5P+7`R<(i6&1K?zbS$TwuG>>G=2}V2i0Z2vOX#OyQJqmsd=YQ*(Bn!j0XcCrhM4 z(r|Y9lh*`)$Ph?Oziv?Ge(B28h(BX~ZRQ}kShB57VVbr0l0YdDHF-hXXVe9Qhj%CuKNTSE-O(e5{6=Vl?ZF-2#Q93Jq3&b>FRlmFFO zQARQ3>I)}>6c_Uaji$jtI8UF9R(X(6*hwb|LO z9#RQI0r`$aX*1X>cgm*o*gRKkB)l7x_ijDjC2fB1ahY4LB6FMD49y&4qmY;ygZ}V| zca6XXCJR1R@Tnf-1V{deTPZrYz=w<+gqK}-jv?n${qQBsma5s#JvZP=KkUWq00f)* zD2Ba%+%(qyb=7#G-W)T$AXT`>YBu9|hu9d|vgGpo1rX7#fWM$32QF@3%0T!MnaN`7 z;RS1)!Q*(lIULwD%fTI2wO=QJ+%uiL8UVJ|Jy$DBUwd4jeQUd?gBEaDBx^;WJq1?o zc24txyg6J%!)%TgaJd2xq*jynz15uc({+aGNnMEY92JEK&l;z1H)u#_RWNOQXLO~1 z+rwt*wRb4Ub)CstFFYUo*=YJ7DbMMv%5&^=2lZCS3mB}knM1k{pk3|ZgrW8bd93*C z-r+RU!slmprgLExD>Wz&TJ7t20CFdXsV$9vTGv_F<4<0&v`j-8SW~kx9j(+$1G3Lw z)k&z>AZ08B|gNtT@Zu0E;?x>5vUq}=}m<(Zs1E^ zhnAo9iLcmkq^RY?*7v7i!98C)nG@#OTv$34{8qo~!T zCEPzf3x?V0o@cMwr8>08BDg4(BP8h zyRwg6Ce2jAxZG@=wh}wFk%s)c)0zS*G#waY*Z%&>jAe9mQT9XLmnK(&k@^HEG&g26 z&9-nc=}T4}yit_koXxVIFDe$k!c`j?uWfuIe92&Y49@fuV!) zeTa4YQol^olZzhsE0^!TBe!J4)h;#=v(o4I(Ppv0Y1h;c2*!;aFNRpkBNic3dO8N< zrl+6u_j}AlBR0A3mwA4ECI#gO$^`A6ODA?YG@>%mylTCZbZ)MiT7p z^A8+AokPk&@P7wiv&OyLD+8-#3Pqo4pxv9SoMRcqWSMuZT@yB2)r8{?FW9y8H#lp|$>XoK*dUy?{jA#;j*l74`algY+lYB{mmM2gyz02?o>fc_G))6f$tO)VP@^Ad zctI#$Si1Iww8-hxmX|4CYH+fU%_q5TR!*ZmWICPv0@AYJT3<7?FgwL=)jTs$7BVt=tzI$DKHhpMP_``uXwzznhj28f z=2qU$ukcqL@R<3i1~@;QGwK0uE6^r^}Co~jd?=^4Yj#Ux^He=nK1yvWY9Q9L+51#dFmz8Z7 z78zf-daUblIIH&>X`umd_hKhl* z;u7%X9CNkj8O+3DmkSQmgfp-{C5xU}Lnxl=F1;_u-ZU`4GSFIIpNq>G`C8X^d9Jr$ zw1bo)W9+tm>?LX%L1+^WBaA*CAW8iUF90HSe(aG;zWTbj<5LF;j%tSw@Zdv-pY6&T zh+TPikgTzXgTkZm^gBKt7cJ{2qW1`>x7--#}`281& zzb2{qaT1LwX|K5yL><+5^4+17G6jja@lX8MQxd%0u~q4!1zz`9{!$M6cmDzUz6HOg zrEUL;Y`1se1;W5~`>F!7rgJ?ZqrjR2tKej&e93t9(f5R{t;L~EjA0v@3>a^19A-)n z7QEII{hsC8Q2j29_aR&A$Y3&B>)Mg5aN=wA;6qSYiv(*XF<~EJ)hA6(LNL9?+A%{? zK04C=fkDhu%bOY+n@npCw+7s-@ll|hS+z?4lT*6uy@lm#;e8wE4jHn;;tO2gV70%v zp?ouhk4zuX60Pc#wfmHrrk8^28AVC2>0ZDi^dier684$Igh;4juCt1q91ewjCh`Og zx*Pt?t9xNZMZMpaZ!qS-Zt4*K6g1n0Hv8q<+u2ThYSllYKaexoJ^zFYSg8} zf3LoO7vG^@)pttJ-*}&!dDN^RW;|C=F4Sk`fq#15<@^zwr=r?KO@JE_+HZld+tHN; zV_{)CZIK&xcCsspU^oNE1T``7ZlHNqRF=h934V^q==nfK=ON1It8y6VgB5^`4*jn> z`d`ZECa{d2Qr&ssZ)J3-+f3vY4oKWfTAHlc+#xDlsTa^OWu!^lvMZN zBDzoa)SC45EZ=>K`+(esDi_l3hIQRc0px*}PwLWl!Q!0qYIL znOre$cFPwI2UTuXEc$#06Km!pIsL4lAicOa19ivKWu|2Z49Aklqz$^`W}+%GG&<;s z_gR2;8&kH5SW>;5S(*9#@$jQ&l;d)eJ!iBVVa_?Ou^Hc=Y_xjz@Xt-LLQu&GH0e*FM`Tv(z4#E4gtGoSwEtdbTl~>%!*|Pr8d2`31}Dw0J?#F4(iREY^)F>;I~c2C>ulJ2UulInu@)SM7$_!> zp4H$k?CJw++^vm``I>D_3x@L+LZdfoE@I7uN@^;SH0d)m(w4B}V|uB^w5x`04vVik z2?^1qQ>IGovk{1{zSs+Nbr<1TJF6UNAK#NTVu=VL3s=-lh;5u-4qu)=jV5HTPA}Yntlp209%X8SzZSQO%tTO!B0MdN%Dm5wENdrsYs}9E0dD~0gvE9f z&b<#`LQlSEPMTYu?0{|xqrhML8`iTq0`^|u8LC_#&6vf)u{XiFoCcUVEN8fh$_)3p z+Mg5y!f-MWpMYerp3J40mp@ysc-!m!@iFQ^7oT_6wxk_AaxHHIgVjeQHVA@qgO;kB zKyHu#o7|;Hs^erji9jvb$0sJN`<~ZM6NKG(y5-zIY7DO@!1^O>3zQ4c`MjdazQx?n zFR~%cH+AETHk=!TsyFABqyW;dqMYo+_tq*NPs;h_GhF=hzFkq3QBAqaIO2N`UhOKR zF^06!Xx%t$uj7${m%4eoU6#|hs-h!867Lc1)Nynm63A-)CWjU8UH#PIXG<9~-=;-b z8ZuKg1ZG;M!^qTEu?J=G6*>TWp!OYm;N4fjWPlk}-f(q%sVE6@o**kS8(99x(?}U8 zn`gLU%PTUf=j$~Bxqu65-|{t#8#r9uty`e4!i1`&Wz4Hdv>ibusT3?`z8f4>P+Js^vqP}Xz8yF5&pLZh4iNrlHr?xIz7}X?Z2Y0w z%3U#lbi<}db#m5JSEBqVwTYilrl|%^u9?7R5`hVPiB8v8CMKzZJq_``ENGh}GCMeS z4OeUZoKA*LvX-va2esCY9H{dXK=H1s47pep6QQyFoB8=8IdjPo!WZg-FVUVE1fa~i zB9*U;XQ`9du$%P)imC&O3jPs&f|1l0x&6u1<2;@Q>Kf)GgSQLp2X72M6?^OPrY*q6 z8OvTW^bM=!&>i*p(SltR?D7;dhLs+?=Oe-sf+=C57gOaEjAryDzMR+I&7})irV9mx z0NHp#F{inag5s95@Ry*8abv@p58T&{ld$RoZ(B8K4Urkmts`(k>k*vJbs^#ONy!TD zEmD~MgTttK0|alTEM79Y-EX0M_=%}J5EkZ?sZLw9IbDg>dG^Togk+reW(>uu_6*mS z;XT1mBakE_zk4*yAd5)rY|fP0Zmtm=bBOLun0ZjRq6Su!`4FSH;p`FwJH@-@fK&YI zuTJsF{V9dB%QRQxlPAJ=WHv<fH=rzwcVe3!Zu`uNU z;$)*p&zp$b8Qb5(G~EAEcVj@C=blI06pY#wHh|ARFuM_6nce?wsmXFN(%*8|{o>0N zs>i)1&3%M2C;PXJ@J4HyQoPQ1|KR>@z|nG1gs-BgSlNELD>_QPA`EuR6jbtQye;-+ z)Q18e*02{aCbdtQQ*La?iO_=UeTe8!C~`a=@zlIO=>lQ2E5U#e)4uG3 z`nu3vK;Y5gf;*82#YxE59{DD4vn%m}1|iA#WPsz!Mc8yc-2FM6;c7e}{HQ;R;lW-V z-uwOC4Z}i5aUEg~BJjKWW!|7@4%!zw4YIhKCKj$HR@%0}hGV9?_0{P?ta128Q zZbaMf@D?b^2zw`PsD725IbdUG3ouhVhd8q4YAIqS{HNIl+^d;Kv0^UQNHI=01G>da zJ%#{2G24|qRg3LAlP9+8px+8_GnEa$rLH>!p;`Q(I_~RzZ3X|? z1xQzTR;=0EOsMB*yw?LH5~Xq)%BlMSZyChbp6HH zn|@dNV^3BW``Fsa5!;AVh{L72-ikUclC|I5InbX;6|7{w{3!ifFM**B1+&6?;*!U>4g{Z-qt7 zCI5FXshXadZ{Ie?j*s-amvAr8Bke3BA7AT#2^GhcIHxfTy6oZ>J97;!L<^FSRA4vOln*%x!X&?GO z*7mEE{HcKO3;;j{S&7JZ0{}&XBM=hC{+zHIroGD{lLJ4@HxLnpfw5CYfvL)-z0l6K z2Qf8a(7-c54O2h$j)lkl{nr4|HnX`DQCgIGc!F2)E`O?^Qn-lm%M%> zs19+xhUml5%MTTMLlSUr+QOs9XoRUIIRl@5dh=BeRl1bZWP+O-JY%dbmBP+xQ|B(lrEA47rBaO zp57v_h|fJV`O4$bsyhMP&xLh=B2eWTY~I2|Qbk50Z~KL8r2|UMpLv;kTWpInRXn?t zqW*`;Gq)2m9?_RNf2lsN-;tT!6{vf_CqBASOwquk>>8QP<53omnflo_UU(=EfTufQ zIiF%<+6r?p+-b4$@Yqw<3t0eadk;+l0fax&s6bghQfN_@0!3&FjdD7USMt2}`6N~Kp>q0VHp z7Y+t`Oly%d!xID`Bgd0`{1EjmM9;r|KW1pFM?CGdn&K8e)@G*44RD86#-x|akjCE7 zBC`t?ky>9v4AGx`_xHB#oII>&rgLcinvJl)2jP~y!{jQfb<#3!#*LnX?3XI(w|3z` zWctZb!l927diYUize+qz7OCUlu5vZ>XdiTw&LMArWE2I{=j$dxjkpTF?cN3bv}pGO z7yI_~)_>rM;Hv}vjEfE5lzaw6DQ$}5spvjSUQH&%I<;-Xwk-^ltk0fw5#P?YxDD{P zD+4vR#8^Z3ckg7ji@WrM9&>%hWLLd19m=nxQDQnoO5-9ttU(EhcdV>jt+;wyNhoTd zQ?l}@Q0?`{tQpf3!r4qSDS@o}mmY9|%jmk}Ztkq?jA>1^_A=w0qkYf4Ks)B&;6+tC zgTQDL>+8rBW1OlEyrD_vg~tgB{wNOVszxSu%E(+;&;UIRdgSoZV`1XgLbWWhVFd8@ zeSM=k7XoEP#tJ|6wIgq7cwKDUh{+-fPdPg2wf8rD1IQcg10)|Nrg<+}48YfsGt&q~ z4Pu}#?OOeIzy|tq7vF(Yc!LWhlVq2B9Cn*;Y7%XHa_g1_)~uD`bwpj?NVQ#i0U52{ zC($Rd)s=u?18rF>)A3EEu-R<8as&h{AsXGPQ1^QJWPU++n?Wby3JKQi%AMY3*=1?| zdh}AFt{&|z0A=$xGNN^PKJ(dAn^Q^RJWPDT-hNP5(EWa$;NdH2FuUxLXp z!wkR(f%3C^xH;mcR97bO=tIDyzcitf?{QTo@0?79^U@q#c?QPtct}?$pUuRKtj=Yu zM$V1&+dEq^Cf2`g6Mz4`k(Yk}kqpKydDq(@2eyw{fz7>W65z zV@qjoMfM4FeAr!}_xc8*Ippd}fzJ3k*Fe$d> zEWS`%yDjwN4a)?zCAqrr^o=_Xa#h9m(P`U4Cxt#uZ{1fF&+u(-xKNfbQF-uDAOE2V z*LyrNmgd7bL2vhW`q~5q>AAY-pU}sSE*GxIhI$vB*)#`keZq8@T)tr4u8vgSpI9pE zrU3)5W(%5Wk||+h{{lA5S}8VKoG$#`cL)mvC@iC8->g=QO(z%1;=7@Ce1N(GBNS?!j+-Rv%xMz z0;l;yXn}I+<$NPc!>5G~6;p5LLj$KywM@K8issnD7NVvM!E}2Bn^4aWhQPA}&G@HL zupR+pXdUcI#)IL^rpF%^4#;t->mLUaPS>?`^Oy2&b}RcasFnuYl&tTqy2l z@SVhpy7%OZ^3|_^F@fA?upx^-Kbz;3_XjrEHEny7#)6PuKt zgFZ%B1PnnCZbIjq?=Q0d(kmG|58){{2cHS&6*2DQOP+XFA76$$;Bo>+d+6Uf?f=?n zpSNbTkERscagdDZeGsCr!PimLVx!WlwyK8b>%8mLdV9_|UO)_$im!0cG06#0mK*!4 z4+QSRU%cp$@mr2S#2zIBAoSC_Ma+#c6|>i#E`9Kra_Yp{wya=MH|0k2DJ{Xxl2}~> z05suzt+Z>hZRx&&HS4b4sHUu8A8e~IvyQRx-HazsmL8^`64psP5rH;htZp=a?9nb5 zc%>Wyy;S!aam818*SVq{O3P8ugJFDPXOrv5m| zfyfWDg`=}xZ~t>2JoF!Nd)Ku6zBMEK{F)K|588hGUu*j-J=saGDmeWMSs{xAt@@W_ zw8e~7Zm^(VsuhA_bve#JVU~HWyTMyEls!XW62$AtY z`S&@Zc?k@zl%UnY74GZOo$Pi8!XR?KVy51QJ5F_1l0_LcJCa-m<-OeG61L89Mss)K znUdyi(3Yyq{*5jEXIFgBVb~QH@t6F8EnWbz#Y@`xdI2bk{1`8tg`5Zs z+x>o7i)B3SVB&vjwy5~Ui-PP$76-*8*0)G0k_=&9r6a5ps|&17eKU8jOKqDz%U}B$ z==a?n{S|&jr*p~&uFYH-^Wuwo$IPGjs##PbT7#{fd4&mCX~fe6-TdyMhbS$skVGl3 z3Hi!E$Y&Jto0{JTs*+a>5%nuO+W9l#8j;@#t&0iantSO8#dJ0{6Yxq=%enYTxrwJg z%Vg5Z=IkrmiGNUY0l{?~0#t_D5?_4OyO6arpADuA#R6hMl=4-X|2?DAu z6(`SK64)J9-$WhlT+hZlLlK7Qdh+O~W^JTmI?&ceF>RFhD=o_b4W0=m|Ux=et#Z zawRsN8f=aa63ax7v#2rwf=a>j=MR(Xro1W0 zD7FXy!?YTRg@$*gP+QdSUh$!LOl1*m__;+ImI1lbB3r((r#yEI+*7xz*>}f7DeYNx zAK6DHMow5s7Wox!IpfwZB_oC|5&v>0w~PM-g@U2cd%G_FP&eUOto!{oNM$JXQsO9e zJC_f;^^(|Aa%G{tyNZ@~ZgsQXOm)vOIf6D(X;z1s7#6Le!{fmE| z27<~y5LzMBuLlh;TrVrN<2wro56D8<5iIhOdj1pb)r*EfNT-A<5lKIeRfSdINh)9IWy7R`3<_G-;vT;%``Vo6 zH=(S1@4cDy+pw_#MjLj5tS)b1Vu03OBtUDXZ14F@tE4y9nLq8m@?X^|gZ3z3PV7TT zR)xq(i>Cn2aUR`Xl|tNCzL!#M&+6DiS?iN;Qb%fkJrX6y=jM*!Nc7$V;tWub{Sui+|QGkFyf%3JOW@1z%v9Sa|=&Swc!@nkO zIR}RXCm6bE-ah6y72+Hz`OcsE7HpKSr4s(tCm%0;3s&NxKS=Rh#d;5p9TqL=Zy5E4 z&saKC{afc_p2-U?KQu#dcIlYzinwe zPgf_&-w&t0>+Q?}R2Oax`bn*@_Khc`A6+JNbWAvmBr-G$6FVtJ#Jhu9FCGwivoa`>>cA!4= z<#452Ij-1`kee!UJsJfx7oR<=4?fL@a|z$w+MX9OmTGdr0)H!s=lM_dHUJEeTkWEKejMAy z8AU1=`V7(79at{`jorb2dMnV_nMOZ}<>a{SL$?T0cNBl2_cm_rHo?8K~hh2ns-`F4BqZPm?nd~k5 zNC@MpFSWr=W=^p0f{wQRqnkMcDjKncG)sY$>hCXj@#nVUsp0 zlTu;ZYj%YSJgwSvqx1K&R`2Nu#}+z%nA>c5GvM83ilbCuw{^4Cz;E!vh*-Cl`?!Z& z2c)*41kS$nquc$}(b1{lPyj7H&(ue?aY~3kv`~DW{+ME0L9lE*+IVNX?2_2yR%#MW zl6XN9^L-MkanLR@KcBwc_Eg8nl>zXX{iHZ)Aa#cLY&Nr@iWztvF2Ky^h_n0hA`Wj~?@^{V(l)fIcB9N_}9Y=9j61f@B$-p^a{k(yDx1ulM#vRgX z>68kMcf!r5O)Yjiuu9?RMZmb|kB)cg*$(Mp*zx|m;XQbU{le+c0`XU0vJP2Q)O14E zf#>`i+rrs0PgVz}33kY0Oly8&bj4MYa4F}0&faX{K*fyP@F|0OoERRaBkjEv2@hjd zCQ_xTU{%mWI2RcdasLdK{)sC+G&AT+Fat)W%VvtJ_cHXyiy7cs96j;1iq)^60|!pC z-!0sWOsczckZ8E9sR;bc9S~k4(?b%VzALb^>37%rh3~HSzc;-@YZ5HtdapoS?-U#- zc%&1Q*Ie&@f9HB9{cJ!_CQUnpcmyU*Oir*%RvwSco4<*h=d*Xyq;|f3?e$1&xU#MX;$7g}>QtKFb6+G8!Zkrfvk5v?<_XfPlTWWdWa1h7Qil9gb}V5T zVvm8E1Bmus=ibPD-&O(^M`E?1DF?euan?3xzh0r|4Je3A2_a#WHFtme5@7e#Z3Y@% zYWx;f22H*HcWGrx8KrL20-%?fmrHU7eT-FwUoPhsbfk=s;CNv-5pm+Y0TrV>^J@tW zSI~)AN>4xfYWp+3I8#utIj4nUWGg!W0D!d4O0b8l3aO{4k#C zM-S6fN*d-25&Qr+gqaEevnf%s{4?fVlh(`$x<0w9N9>pfuff1At;05IXhgfq*ic6=Pq2AGgNPhgNPse+sXc(TUY@iUr zT~rf4Q=xnn&G;h4UAiL01gt{B1$G23cLt`yygd_n?fGNPOpB^4K!s^^%L7!HQql{e zV04DM*#S==6mNImyw-BxD5}y^kJh5VJ%GvOCZ(XYZnqfvsbLP+&c<@CRaN`&5UOQd z5ATqkxt!&?EVh?4uz~x#xJ^|>&KN`X@`t!hY-a9KXZ}Ik{=U=%kTE4w-8hD}UnExq zJh|?)VGhj_clEhl%^l;4#FFn{$l1@=$=ScC*&6#E0_^k^&Df?&faLx!RPCNuL{&Tf z&#Lx4Tu=v7DyTC?PcWeNexW;D`Yz;K2<{DEnp9}9iDggC-7t)IY467d-0Rm_kdax- zb=s#-%TgI@xtSHRZ0*P5?v!|(l!J$6z&mep15Q|ji{%9(V09{MET1dMH?*Pi@ZGrI0;m14zI~$-E5kGHE``QD*?{d*n3W@z4uc44MG$!px@< zd5CzT)ua@XR&xe*#DzTGlR(LgJ}A^2g8P6=T|km;G$dv8w{smm^8AEo(`g9}0fDQ9 zS8ilb@=h*$()Xh>Q5n6rLetXl7qrV3gHfYVhivc6I2=jd!ge(XbSw{IGCZbx(n=mw z*ZjiwhQPk;%SjAQkG*K>fHrWgEB?u~zG_;(#eOVwJ1^=mZ9=-U8XRVl1f>PlC|@Vm z&gh#*T0>s|<@zvDxyD{R%vI&lN2g|cQfS8%#hxk;pj@|NE|3QlC)N|X0)n+ywy8q> z4lsR&A_mZBOnxPX=Tz6nHa*aVD-iDP7yQPKukI_1sQ)t|e4VO|Ii}S1rz#ue-~hzf z>=irE(|9d?o(24wQ9DbsoAaH|il3zgsi^}FIOwf`2fm#EB>9nZ4)S(|vp70`l`ip_ z|5C+{Wy%JSH9j*q+;)5FTzWq1vggaUlw{l(*BgLwc!jl|$)eH#Uo&nz@^LW`Y}q}< z!U}a1V^BLK2*G7ELKN!IS8C={XZdLJ5fV#a!L^3MW>9GLIPKddaNh&`k&h+=k0_ zXP272%rHQ~Z)uRvfpX<@(CmahH|Rc8H~O<-{qL0PpIG0h2qT-mW&~`Ev2KIDUecmvV>swN%pZClM+u1oi>wo3&!KcjcVJ#R4#0`(egkH|=9JB?PQl^oc*W zVMWUAJ^s-d>`9*AUS@$JsiL`Ur99zn`roG!-YT}%?zNX?-Kdx;L z;*NH%)P^b+C90ZwO(;*jxmHhoCrEi}%)dDH_zmEu+}Uy!hS+ndnm(EZCP-e2_uj8x zI0Q(DL`8H55qcv~dfczEWIrMI6 z%*}RxN>_Wts`)@~Psu}0P}3z#%k1#zEd$d5xPUI$Eb-Ee5={esbE1pn(RDLfPH1wB z!6tdUTZ!?7_CPZF(veR~>SL3qR|XL+8y?msHqI_lHq9=TOv8$HwvG=agXRT=CeoL! z{sLoQ?*(FRYS>%g9J%%iJeQ2_Uprk>(8zRCpkmn4ba@UE`xX8Xg(rl4 z%r8FH{%|ZjnkmIsf`1&~^c?s0<#Up3mp$p_vfAyiPw!nJlYLoiCLZE>Fn9T?W1zXz zF%s-m_{96z?RE;2jgN!ms%sW37SDk;{h6puhh7yA50Y>diPs}Sx?S8IX2xgD^yh`m zQ_`aKcSfF8zXc#$A$c5<%p|q`{E1wVpM5OucWG8UI?=j6_1;k%9f)NUwu8L%at{@V zj^XjIas{(TC4d%>G|sk&W~6cfDE@cax@w>S@fraZb7<9K4#I{(3Qdak*XFXR$O6dz zA>s2Ldl^pd5$mLOCBvll?yyI&j*8I7@zpkkgQ)hwg%m(@`H9o+g~LH+XI9Nqnun=4 z1yn=lK^Bk0u;xDt*R-Y!8N8^s=4oZU_K0LkoC&}R9%>LB+weG&l`tj5p{mj+rne>4 z_MYxrR7yu<-Zyf-6c8({bQh7L6CLV4ZYOHdGB*lo-Cl|$#!l}G%@rD(Ct^~*8O>2u zYnA&ba_ex!kpMKzl2eATx9eTW9UCjl{i#Ww2I~CKqq$%`+OKZC9<3_!Lyun1a{)5P zs*PM{%|?z+T4lSqNJ3vf)3o99;_)9QN#2f3-_!o;u@W%gvC;(x(@n!_bq*v@GV%>K zzJ%l2M=+mxX0PA+hKN;0a{7$>Vin`EWGYe^Y+E70$Uh|YK_IG6RQ9NQ_`F82zcxA7 z0ii(J809OlKPvK#;h(+ZtUf<^$HBevAQ0Rh2auq?n;@u<9t8EB6AE*A`yoEGK)x{P zWSx$t5&Vke-eJEpQ#7KG_VwKm@hWaiMklS`MCF4@C%90^XJl<8t|RJ{H|s97^+55CDx+j#zUsiG%CH7oFS+ z6>ImXCcav`t`XbcWb*Jt+}fC{szqkUc?fqA@d}*Kz#I2ZmM`3cuVzghlZ;YV8#T8O zR_oegtBf;|0qSW{V-p6$&PJgeGF{vG6KEUZ0Kj$mf6!kB0MdHu|0YNSRr;mMJuYzK zPjIl_{HU@%T#7UFX5k-!;!1ZBz4<&9|1OOD8FiEGwg=rsHwLxAa1a9GwRfN zu@dDVi1;4nO~0siGAu*0%y*7Wd#&Qe!MXa{x@#_6om+xyJuZo}B^>LnhMz3oYn<`! zi$H!ZR{w+iyp~S#oBRx!LM!=ftV6L~lQeSGom+iYd@d+g1T%1rT#{7#SSbd{JPBWU z!?Hh4`|+5if#VZZ5%$dHz`4W}-{G|4{y?ylZvCW#DlpGKn4#(;95{`9b-?|>01tQ+ z5&0Pf%g;;!LZRN`&TI0s`KtVU7V&!!?75EdRK{%zu+vlPvXblxx-|z@>FM+6$TA!1 zI(LYd-{(MySSlunv z%am}cEiaV7YR;+^B$o5tCO&AU-IyB!E_?6^q&51l9PsjXNdkCkT#MTqVnwZOwt>R2 zclDlFj6GK_#%wOw;9>N83NuKG2_s={$d+B5wEV&V_rm>w0j^Ahfb*_gr7SC*gbJw{ zp554#Yu@dCgS~3=ZUoq}MYF={3XABERogNqb4I4LPxZWWvAso`wnL~gWXrRgowT;3 zTMbDcJjk8eguRD7F@+EnmJAW#WbbPn$?o?Y=U+w3y5Tc}UeWVp>R(eik3#9}=9W{2)E!r+;99t$ zqvO^+@c?0ed;G+12D<|)XXQ43y3L#sB)pgIfDQ2sl_KOl>g~a4!saF1fVC=Zn#aY@ z-!=s(u&M8q2sN@6iZ0Xg}d}eGl%wk;f9GU#f3Qo9o^=^{(-{X(}dDilJJx z%B4>%w4edP`<9u3>VaWl=aN&^ASoFBkx+(%l6k*$oPnWZ4Hb%kg{U!45jAG6^>^;y zXv~;5IbmgAzF~D((3vG>Ic!ML43Junqp*WwXHGoFGcEfV5QZUHe;OCb=27ll&7+gG z@KTOj8KhlP4BC#oX7SnNFs-)Qw((FjoIbKJ3Kae%Z&6$-x)i1$(o0wLFwylcIgXA- zW=xQb3dM6idTE%)54|h9!^r_HX!%qz$zT(+ICp&7rp<_vqdNCA@pU@JebQeRLlGrB zxjUdf3i@6?EVS`*AI}L38!EWO}tj-OGyWb3;!p z?X_$Ab_xfLfijKV6bQ22o&Py=?Db;*a>JZZ7n< zO8eKO4>^(Ck=59dN~0sXhe)V6#fjeP)O;i-amP{k%Gbjj%r z^Gy-!-ba`0qElLHu715Z^ zQ+G-HRJe(OiGJ72uOPZH%{`}uZvt|BTJ|?8fvc2HEQ$%_EV427$?)mI&H$)X>dK~h ze`m1y8ax1xPC?RQWM_`hXQLlTm8)w=mDQ5LAsNEI@wYN377Q>_+=mbXS`5H|sTCW` z0o7RvIqiHf{CmP!Nx9pDa||(qb8daGMFyBPE-BoC?b2reQ@j-#UiEAcK`QtIL=!pq zE`JB9tmmkF4`BQ!!?f?|?{i*FwazbcAuMhCv2alg?{~==+e^PG+yTsVDUK z>y|^J^~wxzF$@gRR3b=McM?k%udzF0|8{%znzz@b7>`qW=&Di-tXRg?c+Tn`pP#dJ z(GNQ(S-eNpEp-p*k4hfo9~iQ_0;5=I3329iX0R>V?YnXuQb+D>W|oYp_2}hN#+vVZ zAiS*y?6?|w^eJyf_K1Nw_f(k%@0>N9^|~F>MV-rsLmUxB;~xE{<%{!+W!o|U56+9A z+#`Ei$!TJv9pR%U;XDUPhk_z`_DPSmOBfdJiBj@GZqZ+)O7CTYFNmsF)RC7cnizH$46qVQ)0IsOwRhLv~5H^=9I{&>M7ncH+6syBmR>8 znnpxDxss}5wMeHRg;8nz(Ca$(>p(dG;$XVUksKvzug*+F8_o@-7wRy6_wl2|ez)0& zu02$Hl_U=sm23qPFDSR5_SwlYFB95xapLLnEU$^`FjI6CD%p(P3zP!DzZu)NP1__L zPKRr9|M0r;mmkEpp}kIjLf%}kCEKT9oeA>?MYwuuiCc3OE4=#i>e87JmLf>;S8;hV z`RV(GV)=F2^0+}Au|E4(+VaL6449Qn7#P~M-~DG2Ipr#fJl0+sAn~#1W{H+(w$QPz znReLn%=44w*#PzoLkA$Efs%+^{5-* z0t-ebyJfPLt2|+KZVuWR=fKMW?tW-S?+HDy35MZO2J_Uul-_wG0#kPCyH$?G5H z2w724OY!XBxtE6yn(Io1;?4;_S{LZo&GkRTN_wE{qX@E#u}(LZw3H!MZ9p~Iu4-!! zQ%xi`v-i@emY${xxF8gt*~VmX(E`vNK{52s_EcC+plr(+xqQq4KNW=^_11rYHZj2d z2%2nTEBm_CO*qP0<}#;chh2td3rD)#FwbM8stIF*N^Y{T_}w&YPz0eH{g|@^UPdEu zqnDY>l0DZ`4NoM(AaV>f96BjyLTIWJUXwFn21<=_Po-T|1c<3~EAh0})Tc?7oU8QJY%jlL#?KI(F~J z)|R8`F}o(LeJ_r&0P;e{;sZE;64rwU5<1WjzLl`3-bVek8KvO0p`(?wZ_;;8)CV&j z3yFY-wVJf{0U(1CYHs9++zp@`B^Zx47k(Tr$`=u zux$zmaGB_a9y@$q)YC#c>C;(nhB6YwMsDuYMeWQkwlc{$^SRYjfssvLG-4s+`aV9z zgcF~zg0SDETWqZ+K1L6e2fG0?erV*WPU}c*kWs9}?$Gqh5^-N%tCXG&kr12lv^G!V zVAT~JZ7tk&+?3I3_K*-iGu!bQ(wW(#w1SaA$H^#s;1xChJaUWktg2tR74)thIx&-B zr+pCYbP4Dl5A6>KNbewLoROdoq~pS%2A`+_kl|F1eFhO;Xe&b|^sLA+vqQ^(90PmF;BpMMO6Cx(_kCH@%n*+E zx+n8b7;lzb%n#-WFOfOYP(2cktNAw+Z|Kh$Z=$`W0dm5%jNb*q?f_BP-C~gsgxyY} zu&W77$3YS<>xA8l;CeOFx84l$!{bQ&B2O5kYn+GrFxN!9v z*Iv@-qx$WkK|7D#R?rvew_^s56|u}xw+%F#I^o-4=riR}hoT_V@WIE-H(DbOT*=oS zD12n_nRTVvpo6N(XYV{E2*YZTvld}OP(AHyLK6^URx?> zsrRPIomEYb`G6NOWYIIrBk-LNHwOTJ&})(iY^IL4&*<2RtLnUe_wL=uj1DPrQu7$) zdg~xTH?x{A;jtY%X}C9rVcst^!aMa_1stumfv2ot+$(bVo9{(reRUvbFsyeSeZBmy^1PuIl?%}^S4?~E1m?1!?suK?8fbFu#S(Qe^ zvKCIN+6;5%xZyS~6!je`YKudh9IS6g>#HlSU!?s|Vxt?z*lBo@3&m*3<74R_=k4cx zUR?0`b%P}h9ZgC{ra&V! z1q3T?^NsNC5;qVDH*_?1;{J}z!R^(X@nNM;mehweR!Wja2-@4l>9o3-WELkYEI1y) z9R^PZO*b__H*j4GihA%$!EpMq+wIw}hUl3XWWGZ<1WHQuWfNn9UnWe1GW|y3$k27Am-qR>^>dDU(2t0pAg8(Expw}c6WL1`_jM7lXJ1-MVqLE3r&%7bTBNXrwhf8PyvWa zYqAymy4frce4aXqM=|!+E*f^Ih&+-VUXr8|2X=Jei8N!V@6QNjkT9@6N31Ei2H@RI zY}+DsAx9J@!c1S=w)0%GX1dd0^M(2`l8(-<+u`}fvW@?SZk;bG+#l3OX6sS!>2> z9JR92@mLci3iO)RoChX;b5YTz3zx*R7-zbFNT_QzUAVklZ_^bL5Z$>oOQUE@3zO@% zT{jMowpA;R4tTjlV+-=Y1B*`o66>-ss-Fsi7zvn9+_GIt+01W)D@pn5V=JV35{MblVz*@=ioV(vlcso3MqnU89Yo!h0 zbAeyPF|h)9^o(!{^sUn@hfM9s;N)L5HR$qb2ITsLr+_Q;;#sDIUdM)EEIUA#AUKND z(Zwj_2KyaH0iAivYfa=)s8Z50+yNlL`Nx@Kr20F}M1~k8r5wC79(EV)l+oAWbRT{R z5;LBiHYuULXTK!52y^B4HKWVmU; z3N%w`STlWKcu=fBWvd@cbrLt@6 zqm(7fC?V^JBqU|uCtI>-WEp1p-LIjZp6C61mhboY{_*=OM@Kri=DM%@yw2;q&uh%k zOen;v0x~h=I=1kbRLj4Yiz8pQDjLLiZYJj(U3FRnOjTMlR9Dc4|3R8^4&ENz8F>F6 zVp|ITw8dDZvx^l1wvTo*%m-4%oFv4)QnFo5p5EYt565pDUn=!T`^f5^>-_WVU$zp^ zU%nFX9bbh2LIDtT+<6v`WKP;c!UYd9MHxa>P@Ys#;Nm%lnhRp6ZKI_=8w;9;xmV37ka9dIus4r$8$3?jrhsq;8o`8>grFRtsNS> zNZZvYEFZwDKd564hNd)gvlYF$b7XJYiVWCcD_1(8eU{e8X9fP{vbAnY9Sv-$yV$;C zo9NRA;NX^_KyZit8Qc-NHm5ZcEE1N#fUjp4ks&SMZCRh+`fG5^IgY7Y7Ud(_UGoya z3kAmTQ=~@iLeOT4o=~Ya_FD*>bwHyHVhuz^YYDg)Nr;I0j?k`rdltT|R|fj%jCjD9 zZs<$1grL=?K0ED)Pi5otkzPq$&aA_aw4P~SzsoFAWN~GNn^AJ`;LmU1QU`5~qGCyV z+OsZ9Q04mm#fz*X5%*K|4zd-4a260hmSh*PryqPVdl+e&Xl)ym$=RW-4i?k zqxudjCy|XR2{0!LO)MN^+JqiS?+=zqF1z%b729yppabXZj9MjvPd*U= z%iFV`+W{xP38x8{m*04H2Qcr+r8$+YrzZ_JfF78XLo{xN?v?F(fAJa4Z94wi2Wxks z8rzXAT0kbt_JjFgjV(;@hqee zl;5)?DS!CctDKzZ7ma3k+)S6nXw%rGELg7`;oKi3b=3L`r4#iZidpE!$wz<#HTtA# zwpQ`OOT)Sk>kV6kx}9cg`^xvIah(y3RGqm^C5pI4uJwOs9I+v})ul{*HTxtrsYq|3rOcY zDYDL6i*UTy5Yq-Xu+#%F?eTOIg`GUg7Ycba#N-NU(}b+SPEg6|F4(#A*^6kChM+96 zBZ}3%!uhAn4O5PvD}&1W?BhJtsA*VS$=1eeV zS|FkC%Uz2LYcbRrR@=TG=g0V%7fW6BHMBbe4=Pu;;Dc-}t zE|(76$T(l$nvH1{SbZg{@8CgVeF98#VTWOy8fDhZZ}c18LataOR8ZVXBHeYEVJC_Q zeO&2tevucaAehRWs$4m5T2!bv7@|nJ43dUqhCbpb+JOOi~ER6?={LI9!` zR2Z?34~B6BigCG?DpbngKuvuo{p#PHooj?aplKe?SJD-iM4SOLYMEA#&D3v%8OOBl9lQ%SN5MijrqU|9 zGE=KQxpu9ATm^6fxYB@|?Cv)c4C23C^tem>{{czL@!zOvf3c*iQih{nrL_38c`R2# zHFs#OOuuoMySJ?)s5|81jzx2qI&Z>g;0Vym2A5ndzs?V@R(w3LR%f}G=T_mj;o+>j@`v4nH^csQyN52Qv#|p zl(Ud3@fxw~17>yl@`gy3-OA3GBg4~;%Xz2e#|JM5(49 zWP-#MX#3x)gsq(qSEzqhygKVmEeBpnIHaZ-s5@q#fejmD5a1tw{L}K`4-mXz`2hXR z^FgoLdu{c~>}lyB!0k9_j?}&hGE)b zU?XA|EU2wIGGmH_nbrJd9C&HDxW@By5lm1vHJ7U+HNX)JZF1Upb4^t`G<$d>k!fON zBJRzG$|XLGOZimLn<>P1gMrqBwEtLq2>osI;cWCJFVEhbkP6MfsHKoXct6hu`MmxG z>&LEU&Vg0!N+;F#RTn%A(7Sm?)Calyx23z9zOR*inpn{D%a5U1^x+Xearvs=GG`Eu zI`!eYUWfh=@8HgX{{Gl29W)^<(xEX>)uFeS@-pI zW7C#J3IMz1DClk#$Z=enR~IzSa?jTVSg!tuG?q3z`Cm$7|7&IJH8e}d%?{w&#flYT z6|w*5ef|gG{?hHUXN1HtK_vknAP`ucIK|Rrwoi2 zx}rh@cJ%ROcr>N$7Abz2p*kr1PGj}m4_P7|vDN&H!wwpY=;`i$;>|NYqo*~qjqf=B zL;E^!{WBcJxSM&WjxaDD1&#n~iz-m5pZ2vvnZuQFH|c;I@|K?~YI45vOTn-7!3s{0 zZ7c(*E;dq{psXcf25XTy$gt3eES!>7`Vp{r*4(W$S{f|WkX67)#%FLMRm-=UP>cCdng8*}EFoYAS` z{yskidshZ~)40A3Qns|1id#dHJ>V7N&Jb8J?sZ-n>=;kN`{qiUlv_+V0Ty--Z+Am)Q)TCI-h&YM5Br5*?BIXsU;mW9 z29`L(_6z?P?hD%i^L>mK%X2?O&3rQ+J&}z+d81uboY9)^Gy-GMxZANo-er_!+$CodzqV@>3Z9hb zy_`~#H`e?kf7?d>Vo1)^hTbY`c*tk$)ive3Cz5X7lsEgD0gYBCEgJuOBLCs+0{B;p zly!Ctj=}$r30U*L5wKSdNF6N*zG72%=K0ej8RiVEJf~<>VhxI1vF+fGlTe{ECCMAS z5(^N*O9E&5L2rnbyUUG_=g=jo;GP0&qrBOKx@g&nq=r%l{s`pUBaPuo=|}5z*62U$ zEUnC{?x}tQR3{eSAT{BboI~nBahWo|jtOGZLBB9+G%}9I!7hAz>LpCGpky`q=buuL zIU zRSV1_q0;Uh_EG7;e}Qp9C-x811^!}r8Z7uX(}nRe)9gqiGxQaA7DL5`X{B|XHIUQu zcHRTuE+G&V1L1pmqoVzWn1(6?U5@niBu_qC7RnlNl=UJE9{Po=V0_>Vv??YuW(gvXXfy&xW3*?eb1whBtI2u?;6N!5(cGJ((>z%^K^S} zAXvYc>9UUCUcMB`CbQ86QK(?wV1g1~EOfi0fFXfRcv>YvM@_G@uPgm&R9316FsB#B zBibk0r+6_`mW1wpC><9y+3`S~TB{Mk2};5X13>u%R#76Q@PNcM?xRAK7#PLkKQd7w zP-{~5Uh)-q`mY;!ONv1!rwg&|)T9a8d&6%yb&3o+GY^PN0nUnnRVdAc{1#4lS?B+n z(*1+c&EorIws3

(c+pvO%-}4m_CvLgSrCLYw9(BuXjAl7{^0YIpc&&bb;*SmiHX`vMb8| z6^**pIqpxIpJVp+g^n}C7X7VBJ5jKrEGYY#85V62%c}kjFMz#-Ta87Hll1e=KK~1< z?G^`J+F#EMV5eXRSOrJ?%_?}gk~8iXYM?m55hi#&hwv4kqH``C7s0!lowaQP7t2Sw8_c|Gu^Bb`Ku-jqFL((zwGOm9Avg} z-2<@z6Qyg+e_K1P{~e*Wd@*Fm9)J-pYN+h64|#F}aQsVLzkXn;{TJhef`N_d`)@wL zK1~N@u=}vk$&(>tke(t^C?bawYtjYQz}&#*?)eh0zW?y%LtZCYZLNS8t(8vtUvf@3 zrWYwt!7}!olYniN#P>JX#ktWRkMBvS*w=7f@$|)mkDqa8&sv|A%06H6NH6=-(X}#1 zWL;H{iBVxfQBR9(p}l>v^BTL(a{-;3xQCfpC6o;p(@*-#;jrQ_CM zSR)DEzJ8sRo_;=-Z}Tt}`}EM)SsbeeCreE&V!56M{=k!m=VH1-^O5YpQWvoD;XN^$ z7dhgc)XdJ^+i}YgP|Jg*vQDl@EtL`wom%y#+Ete}j6i6pi?B?)PGL?6ZO}2Lx^Ty+x9(1qk z2meCZ5|&J%VyO>i*LWazvhzo6Bk1BnFNJYbP3Vg0dmq)TiigXd7rb`O&8LAKXCs>6 zNp?N>F~>&-=M-v|aYf{1FckL>=r12Gn2YFL2BTsT^kY@8cgLhZ-X|#%>k%djiA2f! zS{5%&5>p|l)_Nk`FfVudMp>a} zSa)pbg63?Y8NO~YW%c<4Z)P)cv~>-+*6|?1hX^eV>5gTU%=VL8lhqc+UE7Tmk<@-; z&l!cIlX;peeI?G?tK^PB9FByfnvFuZN`+IzqQ%UyqD9DIE#G(2Oq)EMO#5FQsgY;r zsM7{ArfcN;Wt8-M zULOU9j?7Vq6Tf^kyQu4blpKS5xyxRmkK0w&p2eb6)GgyxmG#mxbdB51aG&sIdJ(C0 zLbXBkp(+ub;yg(5=%8cXE{3W4ks)Q@O*nRn=1NR@FpBT@wKia|{Q7gKG3*`R)b75$ z+!^AyTjvcm@5Kf4U69(jIpy%4X(=6bWm6S;@dO?Bt9-Z9G`DDM*=1hu@15+GM=v?K z`oM>xor1hXfpo%^qc10*2Kj`au@OG_zp)@@wvFq}j8oUBM2N*(_stR>vPY39J^}L} zVw9xp83_lqpRJRP@@}Mek^%Fav(SxM)O_gyYVQ)Z5=u9v)|WUpWQJc*tnI`oZW#_4 z)2^fx&6usN@h*>}k5JLN0tSoJ*JN!%dUGu!2Q;{&whF1W{>!NndF%0OMC@%I^D0O7 zz0-L=M;l)GDs$DOuqRj{{aU8;9SxTc$7jn&CCU1fr?7Bt4ya6QO*lP;axfFRbXnf( zGD=)f@%}OTp}!1=QL!sabLg_!o1szYc_GdNG9%!Sh1;6>9@9fPlB3{PKE8&iZzWwH z4V4{tH)jm!3gs8dDTV3XUD|YQxW8(iPow#a0JCxCg4ZsRbE1jdY-B_@)ZRa*{s7d5 zf=wTQLR$@OmY{R;{fRp|2Rg3WPIfe0&ivShMc**LaiFu}4trqMl*}v<;f{K8$4p&N z9~r^^8FQ%W&g6`f5g&9ioQR=jQsrD8JZ{0QEJ+y`+Y`zSCURYVvRl1!)BeUdVxXUz zP!yLrP{AQuf3pv_M0w;*whNPQRT;|0fqG%3Gp}>WxEb$45pdlo6x2uY;6RnfbY1cOS_oW*)F7l{G92l zguWd8>5qb}g>Kx@ng(2~@;+&?#`P+F^*h4h!Ve1{&hmK?+qbo9$?zjfO05fa9}trn zTT!`J&}(OA`g0z*@bAFgx~)kIFJM1fqdDskJ}zDPcTceDZ?kkcEW=3UyAb?UT}1-3 zd>!KIDD8fqcA(XwddFHrOhmXdug#2`E}h8%c{c^EtLi$?~HD33J6WFIE50Xx}4+N5LM2v>Yxf+{mD+TEr;b&lkg0l0270h}i*`TjV{Mt0Qjv8l$LQ$f*52)Yu1P zwx4@y<$_u+&fC|ezaZF8f!Bb9(ON>L)1d5BU!V2aL0h@_#2EbHT!D9uS``a>fG^k7 z=AK;WYTsn8>j_^y6k`PM1Ir6%q9Y<9%j;>!!z){`C|BG51$IUeT_NNlqOWF+a*GNp z^KQO?$wQ~q6%+;(=tKlg3iJ6FtnOxhrnK<9G}<@ZnOvtvP5;yqhva3X1Zanuu1b&e zjSt3=f}D|fG#j180-UOAij#|&H{_|RMTpT4Jr9ZoC>~_;gSCaTNz~x$S{>B3B}7BS z5vuKc{3Q9}8U@xlgI{M}kurpNXiYgY{BE9o#?6MeIcL0OmpO2j=<%hb-DC^$6Pf4A zZe+Z1P5G=3fj5&l-0A4H_Q}s}G_a}j+_^mo>anNaWWCi%$u8Zs|M-bRp9>&q`{XA6 z?cTVKBaa3)d$FxceL$M0za5|RvtdrUHpvW@-Z(OLqEsB`zKfU=m^6LVt0g7U>gKUw+4#*vYJ7p&g#`XmW9cMO zdHK%DBgF43*gm{3stD@i?ml+^_%MHqjEzQOLPFeU#&56-EY2RS0~pp*SvKN$A8fxJp29nLvKJMGAuhJn{ia9M3r^ z4~=~WPl>p+ST;$|iWkOo(%ofYKfIr}`lX8I#K2kZ-ff416I8o%*qj_M#2>dbQ$D`` ze%zK4#L2MH8giBS0g;oXBVgr{G$t~kE=6hDH zzC#!bI<~OrP!_&S*|DxpgcsrbXai?c3u<1w+*x(d@5#$6jUSu7s_V1OHaJ_JKrPGO zo9wr4IW6$hoY;lwuYTajp4Kye2){qIA3*OcK zAt0J1Y;?8X%=#!r%g*gn2qAM}sFG>_K9dV?%qX}2p0&rlOnzsr%g{sL$$cL;kbnfp z5YBq6Z$*0wU7$^M!GZyIaDT%R5NYNCVdlrkfE>P?y3(mlHyrDk1$TVx7euo#3+;)w z7%~1}&c1h_L89E2iHC{TZFX`Vx_4EL%eeCmIa#(z;;6c~cIz%^c4K+pefUKMG3x8t zvCP)4NezOACi|=E=Sy1MC@{m1S)>wlU~a1er+O@)rq^xMH`w=N~PZnU!8w z+53I;S$%6pPvirMXEA$1w(=b>KBDMovwikDSC_*Po#&Snz?}yv6wX!b58;`(naN|# z!JFGTGc7pX5=2fRX(_*Xm3=C+=`~n~F$e^zA?qam>0_w9D+!qq&kFCz`UjogZMud{!aLS{#GZw19v`euX(}E5u2*& z`flsA6{NAl=abdv9gNwAj;GX>tD>6)y-{22{R8N2JxX}K@umiN?kscjaleilR3&@& z?EYIgD;9)@fj>e^Md8t<3JV|hf=pni8TPj35K3eqs|#05 zwuh+06jJLq>g(>L!@oa)%$C2PMT85Xc7Y#P;@~rFS)x;*Q%c>8yqFwp`^sRBD`G9?C5wKroI9 z=Tug8{c@%Cj%z_Ew{=@}@JAa(r=$@is&6NQ&(Ry3kG4fWoY9jUkY$DHo3C|Pd)hg@ zZ!ebYY~I3TpmIGNz+Kj`XtNaQ z9>SAci}hP@Tf}R)a$B)Kvmqquqw%V_tOpzE)PFj-T|O_(NG1>-k%t$!L*s(@RO`&` zPuIM}0yVKRL@`b8@k43W?lw2qa5bVc|NM^4iSlv_-6u7&?+)c+R{!0P$^>-+=viTi z@y92zD9jMCJFIFyKja7|&i^aeTS^ZCAQAdTTD&`c9*=XFtD%`mPzFM#{3?s4Z!g*PQRxSuWU zv4Z!*)7m#G_``X=Y7*-5`o1lttbJR-n@(6W%e#GjpJ8HuySBiFXH;E++wgS1T>cw| zawS?wA+D3Ds-x;LQ0Yp4piDXADJO_wGxPmJtu2JjIp1a91id{z$FzOl8Pr;LgHumU zteFus%GnC^3n(Q@P0X6L9`ji_*)Y8TC%PRuo4_chNA24HYMxIixZIHhf@27RRk(avK2+S#vc{&;GzM~)quU`is$t5=#c>L{^{t3G_g91R zk`l)^+9#gk&_s^lNqDdHk7)wdHDqb4`$Xc$Q2wsbWbbbHVT2?G@!4No#pPcKt#mY0}aQ5dx893?4z&l*T7)vfp`i zPu*?KlR7$?Ot&Up%ARtnfQ#NYdcIi3r0k~22XpM+eIj&0TlZOi9(@&a z=j4sGQj2Go@~-h7>cZk>p-iN&nU=D=yX;vBfHWSZd>TCGawBH{`J~3eOmT%MM*s}}IC=n;=Xu4l28{>iaY0^fkrGss1vj(7 z*D@dY_?jE$u8JfTF+T4;rY5*DVn0(a7JGf)_5L|X6tkAS=NhuY#WZ2CNQ8z&kQXPZ~M4MT% z3qaFd%XM5=6!{6Sl4Aod2;ww^Pdc7W)4ipgLzEL~7D3=HN#okglvuLOJVdQI_$??m+vuzdFrneTMl-accPt z{~xUBQS0&U{lwcBIxU)L&Dn2eG@BQ^L{PETWj-NiUbg6~AfnG|c|s(7eAHvBbdg+E zVl=&e?!liSR>2~mIWtlzAF%l%>-y2uv8DPEl0&WbCW?|(>NoXRLAVY|z$77C^B!1? z#%~l(A)(`CgZq334+<0af1mooFu%LXd-6<)6ku#fEz~wD-_5U7(t|k^Lv?Rso0BOZ zj$Us7E{R!_%N>Ye1=8P#NC@8@W%6HrGSrm1g zEIp_#ehD?1;-N=FT@WY-p=0=bhdV46F%4h$g;S@$Uo1R`b7T!vaRhmJ=iMp)9R)6# zDb3f*ayGvemLl@DQ2T1NUySn_k9NM$V~e7H+z`%gvfP6mp3dEm#Wr2kru?L|p!^U- z>%whQFq0#KhDl&_6h;z~)~;y}tknPcz-Xgfgvv6zPHz;{plU2K0pY(bv!U0XhD z;!#}-984lu;%KC8{cD-3CkJrF6j-sQeh|6PXAfB)OgZw%x@}g1v#W1S5 z7_T2H#M_30s}o|*q;I6D7jqFyYwTXXe)M&|*@BEv|Md;&c~sNg;;42A3TqB|v2n&J zL&OI!HtHfcgPiq9V!heY0K-JzH*7bXELx`0i6>*sLhjy=uUTi`KhB3X+gT4*UY9R1 z$m>SiRk9->SpxVxp9Py9K{>fKn=4#7V+x!NxWLJ+s`x%4!z6tGHS+!L2KWKIB_a&D z^ff<#cXN>W4iRSU1xuwG{{u|RJx7Tg9=)IHz{D&HM6nyNL2rp9~GLU86Y5v}pPzEsI8IFL%mVzmHE!$KvI-HtWI)3kjEZ3DDT+-JrS> z%F|C&OR}Wg%`@eKE_FEM7JYG;>P=bGn6+J5Vhng7iK+6@(}VaIoU>_p$RwSwI)%Ju zYD6WGzsygZn`k>N_WKr*!7YXShCQc&`vEJ;W&+9pgO<~=)-A6g&-vt|?sjjlW6Ce+ zd^onLCU^I=Ttd_NYX(-1UY|AM>^f9Ee|#{;p=y&UKm1~(zMU()R3dGgc7Gyy*V#;+ z!YXH*MU8z|6x9_idN18Gw(X6@I zN*10C{3H}E;u{`jCMl#B2V-||og*G2-4{Zx;s=iy5zaq&+n!9yuox58-#MJZYcWDF zGWcNK+^cUBCpnx$;P$>r^cUkP6Udt-eyyE*dV%PJ`bFKqyfd4BaKCJ)#v^^9=`&* zqcK#7Gm=ZaK2Eov;*MVpSgo6rqCB5m19M8P6#;{dbAO5lIf+BEHw67o%(h{1tVWA4jtN6NF-@~;bvV68y2|~$I|$kLw~x#Ecx35qmt$s zmF4CrPH7`Wh5Of6FNhC4WtMl(_-6f#Ye$1dZCUOuY3B>y$@+bV??{e{t&4hqlqZ52 zgIj(s$W=qf4G{fw*v=0s^Gr2Ol;Vo%V@@z@D1$hf@vAC8>IZS20Uy@RW>y)j^I!JN@@c=^1JOyj54m}-QIG~i9y@g3roK}%!qsD z?5Pb*L>&>R2QT?RT?;40Kvj0&LfLxG{}!9b?F(P`+&ZLUyG7WuKqJPLUZ9*OcCd2q z6G4&7@eP5MiC;UJgHP{WdVVZ6+Hk^GzC;-W(Okf1pojM29~SNq(yMt59)mVB-sO;} z%$SOb3iDct&nAOTqVJ%CgF`oZ-T^#)t|b(jk-p6GM|hasJQ#Oq!BU{+z*{xqx!ezP zLd+La`lgTG4;0GJ?XLVbbTSE412OcRI!;(My`SkkPBwt2<;Vv$T>nm`I?K~qoL8`O z_qT1!cg5Liyjvs$R|q2BGKDKGII%x`(`nXDG|L)5Uzk921R4;1cF;PYwA<+Ddw>Q- zrgSkf9(Gs@82(tx$UF+x7ZKYWKjHFMDL28+@?@`0=ygRgC51-L@)PkGLfP*G9je(y zY`+-4Q9J>C9D@iqBYI}5&@;FATa07(ZZ3_PIg6GC9Z$Rnqk-J#RAW_iQ*Zbdfxa+V`cAZ+D)$kbl@}HvkSz6CZ~)ndNd=?l$c%!SGlU_tw{so>C5M8QAbs zh=R{HlG`_%bY=Bg3jJP1`c3uSm-{4hzaPu|grwgT7VW`fUh^34hX|u$gkS>NqmyGP zxc-1HQHqf;^*8&#&x3h~VQBXVr0O7F%TF z>0bVwX$}1+(@IV?(Tt$qsq^)oJXXQ~qzQC!oO*pGKY2#u%}?1uy7z52dswstz-SeK z4Xhm!1k8`(WPWFTif^N&C@E*VME82y(fZp)o#jhSMgz4led5*aFJW{9S%UPwu&>cr;C??zdo%C z0&~Mi1RLtxgy=-BAcydi7-oaFmEvjDMY8%oHNRt@Sh1XFaBfBz{3^2%KV(S}o#=AO zO>+0b;sTB0!UPWo7rbC%d@d0o@RD(j??PSb0^jXAjRX4p(GlU;>u#Z`W`J~(rMHB6 zR^!UCf*BpGvFGLr_l6)?7Pv@;q0u?ySiGVNRB>Kn$p52#t?%nwC0qv^N`d= zI5(n+mxLz;rxZa&&8!=IHt{Q{>VEov0m+~kL@It|(LEh>?MkShMN2Ak#z%UlpCwZ? zly*H7N@#f4uzBVCkm%I;_iPd?&CZWMe!-PPmKoNB3{vjFCxUO|wk+AyP|kmTruyts z^pm`fEyVWyO#R*FA)Ni|Cbm4ZYl~rSk&bbT3Y?mFrLweNbrYbe<*{=rd|~u$&q%Y) zP3-c_r!h_rhP*v|8ty}eCU@Uneg}G@r5Lk;UXYl$Xl}-^apF;hTzY06;Z!xF$KwM5 zZ#TCfRi|9??TYMLLS-f1H8=Px>wmUl(1yhZhiPEy6XV0Z#LhVC1vDa@eFyr23p+bR zx&4iFlRqtmg+qAIJL;L*m~M&t^glv42Q%Aax^M{Z|8eG*?zjC7En!Vf4#7#;I-Rh@ zDU(_#eciRx*n?9{RcW+zkD$%%__3$i&t^tJo&T5-z@E_J)PJNN>_#q@Vp?)--0qqo zwhN5C%PhFUlZsw6|7h=jnC)ngo5atW@5BYunlSZW!5-+MlS*p(-~$+zp8rGsGh~k! z@jYtZ>wYa5v!q%U6zv`AK5HPf2b?zSm+4<8eW*CHI_*AB@%`!}+)B$oe?AN{Klse5 z!|w3p9obFH$NxOx_$hj3$yF8;;(Ct3naK~)SkM`@t+cc><>VXmo{(@ZYbJK-;Sn>- zykYV!s}Ya8I&lVo+xKdFv^vMBT77dB0`K@Ni1-_IZw}0bdKz#ntPi(^=HaG=IJ5#> zHsCIYTO!=-CPt2(1@;!#m&oMB#-)%Pkw1|1ttC*$WfcB zlT4P*q8#~#zvKtK#)HMNpEfY7k`2}cyE>mvS#vv(a%qw3avmPVD~|J)&4pO3>oI7o zZYoKZGy;`wT=|+f2Q6*~C&z}1<4oO(4Jn@2m?f7+Wy%z1nIuq4sm(50hj1n35^^kB z%yK>~vkrD+=YSAKDfYdQIbpQ&78htq;Y_8zBGko=9b-HNbX@S@bw8JQvW905esJ({ zdLaE?KrWB}#N_-nxyF!JpY-Hk(K$BgZZlTG=~UQuNF$6q+H}YenbMTdJYaG;2Cv1D zyhkuL3V-~aCO}PH*Zpg$q?(5@YiJdVpE}rfbh>mGoESe%VXe`g!c@QVa-DB_ooOpd9}^MzT5n z{dt=?@i(s;wr8Fj>$x10_yG}i>>6yg5U;rLN)^O-P%2VZILM0nj%UsW{eFwE=8C`$ zoWAM-xuK@HU%VhSpI9p6+{=5NZDd~Z0NZB+~n$+O;&sM z%Lz0B4zxP(G(e>+bboQ6lO)`wQu}AbJHZ(}4r1>haxP7q?!G9Mfyh4B zx5QOU)>siRqIA}WPO`eoLpo%=^Q2SDG%!*vt0frGkvJM0!0f~3tU|pMQR0_x zIOXDf+Cz9m%I{#{j3|TJ7(Tckn5a|ih5OX^^(sy?EZdY-7QJf^no!%fQ-Ybz?f-9_QxCxD9_8`2kJm_mdd;&v%G0N6G z90C^pJdlXX#rb%;K-XX?8WEta1j^P55CQTYJ3ip>p~>|U^BJH!OwH$F9vge^eF-&Q zV5WM-`S8b)MR&Jc!`HS$-u$)=+O>H5!!&_W(>Z_td9E6Bubd(oDM%&cI3L$bL1A@K zvmfChE7=pa_8PZAVQ5rgylFfoGf9$ZpJjJ9tkhp!zVycxc1rQq%fd~kyJopKR_;Y2o_2NKIM}g@UBYal4N@Ml&jv2pu&Rg<-2mOflg9?r+4kknn)ma z%u5-VExgHh)EZlCQ?P}JBltHZno_+D`b#cLqn|iAWd}M)>dthLhsUaf=(%*kXnTVZ zr4b^3sa%g*4-YEnksUwcp3|^?)eh>1Ges7sBt_G(U}l|EQ5HRAZF0T7XDoBj%ixy;0F1w88m&FJ785wahgVv{g%p|y zeIc@M+TL&0x|ylZ6L_+ztnHKap#i;M^T@}f2jkS4A<+&nV{*0ccoFo0uIYMxaQ@n~ z!L2);v0YtbS)!0P)dp7;;ak{q&mC?>O9|ty&|V!i&khKul!>xktvkASwoT?!wpro^ z!AavxlP}{AlZPL(+gyP=)W5W@u$~qtv!bp61htiaCjn{y8Gs2bG@+~d&&3)rG?j&6 zL3rqpbE@%`-*p#C^;M!!Wby$quw#)az70v_PkO0eC?&#Dc!%q;$|0KrQ})&nR!lB5 znBghc2HOcvd<}U1&_n#z3>kn5dXX@}?%ew-L<$)MFcdv{(P6rN$e>eYach6(~Zk$zC%|eD_G-3G4FHXI=@Y9HPiGwrgJ^ zl)x-kvJP>3PLPA}IgObV!uKXT78#Qs?lNnEojVu!=FPlrW=nk;m}ek45-$>Z+4lCX zc6FNdgA=@j(a9*A-q(pKCg1F%{w70xU#qGXd^M4nUgM#x@YYsll z@7_FAwgTW}Gtj(}rPtybu3tBHt$%hYjz!(~Ong?2>Xv zFTSJVlRz6x?bebyV_F^@SxhMca*DZ#VzL!`#l?K2N zLej>%L{EY)WghKUqOn>`l)S_6aqKL%FUZ!*aLXRmHD6IeWCdOiY01KQ&Y zm=8Uy@SS9}eS&_3=`)r$+!7b9Nly|yZs=Gf!?Wsu9}SRItj<0GS1GpSMcbZ z(@kn7gj~&qo|jb}pd;c~=4_pm@RY2Ar#_X3bL|LM7Lc*U}xSfOi!&fqIwH zov2BznK3#c>+`hqu_kQglV6bnLR$&MF~EdoK>xyoR-gTFYzxeUMkT{cs10C3HUD2T zp%&{*=rZ*0OepdNDLYB=^qBjq??5MeYl;B!*9b@Of5+syttAT^tXl)ZE=ju z2epZxiXwc_DT|=I2T=}oc4hYdCzKu*$X3_*)EW~Ps>VZ2zrkGSbM;|Z(}&H|Fl+;#Nm6NGR(XgN4~C)psul8cC1Q!D_?@ZN9gric9^*tBw-h z-k8b|kJ3Rj?lo>V&-es-&FxS3?7C@)R`@iwWpgFoF6q5fa7ECDq=Ae0fZALwIJG}=isNV() zdN^p=ljCGdqciCj3p#r1+doNAVM2P7gfn!IEZF7|ry6v4;`Us}(mhc`I9964YDYbvbl7Qw2i5$acu>_MWog;}mIn=F zpz)y2fCqi|Cl9Kd{+^~fol_qips7wD++xT%xIC&@xd+$B7j(y|ethp%?>Db3mnTE{ z2}%ob##KNI`QxE0j}p0t>AY&6@G|M{hX`p-PL2yWJ%TAZ^%lDzbY$GD#K>j)12N)l zni93ZMUQ-r@!+gSRbYzSuQo3*uZxsu+Ed!F9Szf=%-c)gsu^F+EjCx|fB(f_ z@so-?Swwj~qdh=rnp)TTt6!u1qCpX0hY(Fg8xz5cg9!7NJQz4qHETbao!;&$(TA2c zc`bci_84=%Wtv*4r!=}qkpK1-SvL=3Aw$o579o$^L;|HE(~NE3A1*%f4BeJc7sz3$ z&&h;Va6(FaB%BV9Xo$M~KD8Wp8-UNsbPs$SfFSY`G5cqcGSD+IYz}{!S!`e!6?{Gg zXq%wzVsqlvK~gvx2X%HYQDmh_#h!U>(kkw`(f#|H-?JS$XKN$q?R?+M*2a^pYfl_q z8m-@~!@*Q>=|Ekgv(7mnWcpmdOuN~CRDa#^*+Rc9BJ;~3&LAa1;6fY^^3c?jy(@n6 zq3(p(H-3FxLGwG7*?F++!TV1m#TlPKQf#3%ch#l>=ophF>^;UFvecA@meOkO1pD0j zl@C{3dkMOmQ($6qi%PlKhZL`V=t{Qj0~ZuV=XgzUkyH1L>ZvY|2L`UcR*bbFuSv} z#(Q1nkZApKM&cu%v|(Ofk4iU&ZB2z3eB0&5<*4&$+f1ETm4I^E0(V7V1!D;5)DL-G z#A%xub2_$^!*4djLcILomwVW?pe=$bpr^N|y!j<;@(POBLrq^Cn>}-uLrKeOY)t>T zB}-6o#{x zABuDWoaQd0>3$yEXOaDZ?AKxC`pWY_?Vim$bBH)wyG`TtEYR-UO&mlp)M*U zdH5xQI@zh8ON@)F1zbHS)?+Cw%)4n zw;wju&(X8EcH|@5EjP;xfh-K;0h-YQ%5!O59{&g>Y2u^T0F!?f{N~4s;cRTh9R~kD zuoJ__eO)wI3O%jJ|An2LF-m!VMG^wwDaQZ}znFM>*e8Qr`(QkmJ;7MIYv33gr?gl8 z>3SAHq0*ZNY*mhSA7d-D{i^k?kiVpP9)WXY52#E&6r5~(`u)<2I48cK5$ilVc~u2P zE4#iOQ{R~H=J3B01)UarAI{YX3jp5f5Mhu_)}mM#=L{t$)sFVo+z zOGAy(c!%7qgJJXx-o>T+C3ueoa|oH^$QAD_#Kf5~a)u_+F4Ik%bqTnxn|J;?`=*>6 zhTD+e8;PdqNKY^?0*X%nM9Ym_%s;oX^*NaHZ|(1!nApYk*6@1$i@uxfGv?wP1>l?p^h@L?OvOgJWc`l#g7@2ua*Tx~7DlSjx4$|WAvclr(4+PigX)K>H|~A?Rc?3zYMH0{iQ)r?RiELcsi+n`6~nIFG=(Yi&$s%Q+RN40T%&Ira97lUvd zU#_&y`D^LNlZo1ScW6&06duwu??IONuFmSou@;|G?s@Ea|GP-CG>!Ij1H#WRUs;?S z_3_nTB2p8p8uv<52v(6+@1&_nr!C1jspE?;@QX#nh(s{d7w&|`O>zNZXTSqQ4I^sr z>VvgqaN_0Ytv8?*^@{TIN$ODY=tvVj+3b5&Uyv6K?<3*f(u;6w7(s2)1MtfACIiRn z37%+kH~X{U$`aL8r)S@_5ndHYKwy*CEeWOh!exgLo@ip_fZF||T!-%UsJPf%mUK?M z-~aB(;XwwFnvcLHFSv*j(Qz{Q2NAn94s72H_-36`0kT6(HRiQTOT_|Uz65$tl}zey z**+g*&SI< z&hoq7??cN>_x-u=`}>ivyF9H>uP&vw`!y_1iZ^^^ z8i)#OQrXkcQv1+E#pq?WGmCDQ@!i%JxT#l4sv}JAdDFE^};AIkU~p9C+fyxG~mf#X@L9ssxy~?jm+J}msXg% zrJtba4SYt3P~G{JWp1EF**>NUupxX@+;3_WFtEnW&#Q&#tjhZ~sg?AjVXdVf)}^oM zU2U^U9N5^o1z$eVc(X59>B-HWA_a$$|Bw#KrbIXZ3bj<&Ke(_fEQzW=E*vkz&sC_J?&IQ=Zb_s84eZu=wY?s7yp-= z^;ukgXV(V)*YNk>w=pu=MVy)^F$Zl)j4l{jp~mthsBwKSB#t?OYb86fMjP zbtkO6)fa-{Bx&j~;_~axF45Ff^QzQ>g8PJyZw$?&c4HB#9aF#rtnX%QlmQMvpb-$; zO1mk9z9_o6XtCFF;5Y5ObhTRTOP@E4IyKvO?Vjkr+DA4;a!Qjs12=8qqtV< zN#GsuI$2Q$KS!t{=+O4uDElB4JT@L0+mmN?nTa8Ga-VFI`{JjERytg#Ljn;n3hqps z8@a!>kD~2@f4=-+90Qtoq={;-eMW4Q@LbxZ!C*cSx@ znK24a&V`MvL_ZVlyDU@lE!x2)bDU+X_lAn}wRH%X*$x0rQrVwX(D3%@lTMjDmK6Ev-u0n^tx~c z8#O0g?V@JSU8bh0t{zuIq!hlxIO%?sMDsNcDFqKj{^dMf36@Ft+eh^N9nR(Aare&r zYzTBmioPp&!1$=J5v6>|ZMBH!(3;CIk!8M1}dBgq0~@ub>; z&fvGPmRlsF-}+?shD%<&tS`3eCKM=ncqg-;7yNo7emmQNIs|U1R!@OT z%zv|2q^j_^c%bjA!0^f~f^u1+J83?@S9lU}+P5SImYB-}Gt$ZR0wJl7$iS-t@3Jt*|YtSq4A6$~Zerxs#j&p)^%Fwq&wAvNqbe}3 zGrS$N;b02{qnnW#QN{D!I7JU)@+7y8#C!Ohw2^~?giC5%EQzdf+u9cNdmtWeYYMZI zb$XQv`R#=IL%2}vRMDoEyhi;j7K0=DxBB>1>MKo{hsrNT1q*?NSwpc~t%+5}l`Ju5 zo`xo+sFYz45j8S;QSl5tf(rSfL5-a4zO!P)G{c^D`}Af_+iNyb!v5S0H%{6>k0P3F z0%mld8J*+!iXKc*<_GoBm=}~yn_7Dj#|F`D*G!!ada?;>b4E1pKAbnw}@ky$78PhE-1N&?>d=3wdr#I4pioJv%XuLsF|m1$(S zk)ol0>OqFB`(O?I1{k;e18g}5V9PBCY>5y!uUopF`>$Y2=uZqz7`RXX6*h2BfLt=9 z-dAkco|o4c8N9^+EiFLPu3ZrLFaaed*O||tvh&U5?A*4?e8DRzsIwukKwb%;tg)~{ zUL`~%d6N%&$ZGBLas##ymOMy^w#;YObjdf55bH#@jz|Fuya>d+GBUp}qM3DnTK2fq zMjF20d`A&cRaI5zZTXu6wzJaex~Ly$d^lpiGFe?h;#DQ|f7U;J1vGnrzgcXJf9(0A z%2?2Vq%f=h2@9Q%;=U^in6ZGQIf2iZ#)O56Q*`pDR!Nl2RMOBoNfY`TOOryNaaaNz1GR;96q+&AYdn z6zCpTG%-nYvxhkm`g!l~2vsqo1|Q#k_m(1sudoQp0!pg0tBW>^3uT77>o-67TZM*s0ylhd8%FDmRvv-nPL07vp zcSQ|)wg|3u#k$0Wg6$r-?}r)UexcJ%GC@C3*QtY_jqatIvd^A|JgCs|!!l(PKW z*V+sVEntz_5nf-$t-9Y-O#~XFWrF7nZu5_BkZ=+>P~xVfAg%BM9YN=ItUP_&)`&Ax zX9EuKWwqeVAxGW*$7K>rg?}(xWx&s}VpiXCPnQx=(q2^;4vGm^?MZ9tWl1`7s)_}D zXSz3XUFW{YBt8bqEd&b)yfnJ9iL6FfP1EXx(~kFdb%iH2t?Xv7nUmYFs53gF@pIT6 zRUf~K@n+hlWC)Zr9%VrGBwyx3Mj8=e4e;>)VYs%-~-B?hL3E^@&#Y zq(#aHd~=!aTioc@`%y>Y0Yeo0O~EyRYWH{b2OS#CkR{pMy%--rZ#r^O(Xd}XXBIP3 z3#-aW?{O3n+8~?g6p*L#I=}Jw+Hz`AfmX~I&@Z|pg2wGG_hiW{ZW42@9`*JKU^eNL zU={7$u%!;3Gt5ukl1uSzY#viFip->SE&G5iHE#c=TT0#vbHTf>Eh zQzp!1lS6dd+_2fml-wP+a72iXtE4KXFfKVFDrSO)c9TV8k9(-joPC1k`&w%wooE87S)($O=y$GPez0(T{lwNl#GrK$ z5jFp-aEvr57-bQ#F(K!hcK1;ZyLn%S3sqGO4GqB#JH)3wm2Cuk@=dZ04?Rq|Tu6Eq z<1wzM5yvFQ5d`+9g?6-0^tiz|O+t3VK`Z zGZd5|X&lNa?Y;UcP~IY~w>Ra|)Z=5m8j`4FS=W&}$AS&yINV4^A2?{bw5MSSClIFB z8fdxD#4pHweh58uqe#vvcnawHU0mqz8rCz>%*|K{G-N#JrLoW%YT}=63&*>{!ivR> zUilq>Q%%uH$cNO$0{2(N)xOA`TLQ=ujI&Grht@u+8m<#I?_ ztuY?~C6e-}CeYC<*(K}Ry?TUu*&0b{(W1S!o9eldp8}C$A>jy2HeK_tXl;iZJ)%^-ZO`%lpFlz6X#l54_MGe7@HK`(v*Wr2m7r+Q zH7f5%mR5DO??3GGVeQPo2t&5owSnd43{Fw|Iaj}fXC+{C_E@YGO?)-Y7R?-{LR`tu zS#wmiLw5Of3IR=3BqW2r@x|9tD)Sy)(}@!&_VJ?Vr?gLTz>;xaYAwn+YJg+ucZgfa zP=p`W*+qjPAuWt+t64qw;$qTkNTm$$rb{5`JehRrs%OSJnjIw$s&I(<^a2405sttB zpyDWTZ*$wBpI@z#`A%M-ks>FzX|fHrz)fC;WlL@DyR&~W4LN*u zcw;IRpRJXzHNb}my1^l4z|2UIS8P5)((#$MUQ@V{HWY3o+d$Ib~s{s+}T+*{bMFg#~HfoRaF-7zYJJ|=Avbz$I5n%aCTmM8kM>2J%R(G1_!<0 z6+JCU{0V6Qi8euSE-=KrT2C_THT*YZwN@eBOVSgJ=@|&%WKKA^P6zqU+M9XZ*N;&tdH#Rf>XHA+rg9OMfLgVs$)c>f@Ze zsA*ayMQ(srSo++(69kqWp+utLO4&qH3QE~&lv{HUl0(f^4T{4o;`Bh34k|iIS8Piw zVLxfKFKTw{OIV5hTakP>PZNtd945U!6xmUky;lS1p6l2>m)^7P6+xc8p=nCA~ z*%FO5oCYi)V$kAUdEr*55G7H!u|>F;KaIzzMuC~IC++?8|>e2>UTg;!jy@sw#VtA({UAToXpp826IN;`ke6#zUSxA{T*{x>b|K*=QuW( zEGOGfxKL_5aJHfpd*j#uaIuByn84!kKO`>x!dryj*q?aZ2>BZ!CSxZ01lxluuf_I- zws`F)fx8kU92Yz-fKL8JK2rirLP_GQ^h; zwveiBx}15_;(SWxbJ9ra%hwL|qQRWmT0LT&Rh#^~4Ub{~398hwzM+vD`ufNm(355s zLtVCkHHRiLF3cHhzm88T_58FL3TB0|^;scwno0JPLNIR) zAY{YT_Z@|c_rCk~0!%sxhLqMIH_@e_^^S#tuq}sEfF&L%3RZaQ73UHVB{qeqm`fs0 zjNJAZ8@|jvhG+7Yzk*8w_!@xMppT_wScxfvzwtk5uidu0FN|SR^#*|)52hLxZiRH9 zHS{V=2Ewka`oY9Q;aG%q7#Qe1xyCxQgIR~}iV2ywSp=m;9$!7YQ_AeG&bSz0A_A7O zDxxtHZ_sBHeAv+(*B*alFH0(w-N^^JuSU90oUzJ4J@YBqE_Y^l@k}N~X+1G}1}`Q# zv3Z%m-~T@OE;BG`O{b5c(|TXYaCI<$2iFFF>dlbyXN>x zI<+u8Ane$e#klY9?A;e0^V>9tW|N7a9EV&T&H zV}gT&rlT*VWMAk?jd-aR184_irChl{-1i?O;UB2pf&`W8u=u#XR@;EWbg8@4;aR-f z*VUc+(u+=cM*?8K1ty&`!1I`eH|AJCJ{mYH3_uhusCyNt-GSR=J&0g!)4r{?YB%xP24U%*}P$NFqey}C4diU|yW|i7nQ?H zIXGCAy#=Ns7TrbhYHzw*K3$AbL-R0}d$_8}RwfkK+lI*7KCASSTv`BF>*0YTP2JGeY}#7`*1V&czDWj)McQ7*Ae#H?1E;y;7DWFT5Bu zphGyTL2P`8nRWC0vdTFCW|{{A?!ZEco8b!}A+Nr)1Oft3t|!k|nNO;_k>4UNuS;}h zp8?qV6a0%L=eVdWlAd@#aJ-BwZhqw7gMV!R{8RYMtND zWq>?erKm5)a6)TuIJyV-hOU6slpV4QCxoSHaB`Y{EKWf*-855H=^ATQeKtiEg8y70sb zj}_nlybdTp;LqCtv)R@V4={^YuiTI!I%$+FQN8SpTm%>y@QPEmp)edZ?UMwQiHml-jvl%l9E)Ctnpqex{|Hw{B zXnd9x!o~yY{71qRE0nWJGMb`dKl{9)7^Rq5XRlt`x{FP{j3*zmcas&c{ZRREmzboi zRo`RSj38qKmogsEvmr_Qu+kUriNzBl8!9w#;@iCP^8?_T zuTLF$eb_{8cF|1NzPB$(o9=v^bUUVK7*|$tl0nQOo}SIZd*diP=e*@DiEld0Wy}m^ z-{Q$nvt5-mj8wOCR|$D0w%l7n@h07&^oT$|47@UNY4qd`fNkVVJCeCL4rW7OQ?sxf zgw+S4$n$fEXnV2xkb2&Zoj!v=v~5=7%uX}15^NYEf^VugbxVzwH*>>In(Y}6lws(H z<6>*dI32@dz)7swWejBs9h@pfk>)bYT08dZueoF9!|s>_;EoweeLS5SJu!LmJZ{cw z2rwIqc`pGGmIm~bs7P{Q7h3p%Od<`!hhH0nj$GKR1v5j=Plr8@h~PRKXL9n$qcF9)&ght!m~gevzz2KFZ$_E0 zPo^3Bwy(+0{}Z1~U{h}T2$H=YaD4^72?*^3+rM7~uD*)puW-HQQH9s=QVT8BQB~;G`MS7E-1_kY68hU!&^loA$*&yf0(WL+fm{&PPn$ z=5<~l)U7iYx)|psxp_y+v=CJMJOwjeUM?8#{9$q#HnI9KIRT1dm_PjP`%s@y1_&Bh zrmqrPbICv1jI1rcR&EDH$<4a_9V4{F-$+^Q31Qv8r%ez~u96hsi+8gCH^y_gqXV{O z`n>Y7qZ^tnw(l~|juDK4F z>gskO0PaTBx|5=OY~5G-!qgKK%IEIYweVKIi;Au94x|f2rEeA1UD9 z!|mWQ@(0!Se<|9IdYnbS2}-h((*tgm-{r6Ry+T@mP?u+X7)lqw3p4qkk21M(xA=Yf z9Py-Ur%cb6Vn1Xzs!A51l#S;$tP;oh7zO1;R_>MK?)$3OIHSOE9|p?pOD8Y}RE|1w z1|J%>^vD=+Y>s!kb?dYOdUt!4@^N-Y>FA}GXsXj59)}Jn_fJyOaBZVqbRTSieJxTj z8FX~BuB*TBy>Ktg!P+oN?G3#=b$wLW8^CfT;NbWGrFaR?Cmu6XPhA%YlJo^Ea_K}5 zz%2Y>LAkWPyj%IB1?B4fCn0V}e`Oa!d9ds{1^F_UvLgBlw_Jpa38oR^4Ut~79>9>~ zr_dVWI8{}4T+^|T+9quYMjZ7HJ}g`%8Vz#Hv;fF)6hMxv3H)o2BYYrNDO^EX9a#y( zMeQ}mNti1LDbpBy>Iir`g6y92eupIsfp+H7VxBfRW!$x7!r9}&D=p{;ObI$oCfaWY z0J_tf3#9DoJtW&Ey&*l1D6m`3S=I*}!=(&MsOBP~ySB|BU;O%D0v~FBKUA24MQ$HM zKGQWUvN{m)o?Nq@)KdLd)|1eG>ODztt_4ObOeJNkTQ|9u<&J)dyUo#w*iO252Yhar zjVIav{rUq#Qno(kXwSpDW;NR7Y3|NLOEN+Ad;GUS z=|9q7XZLNmsq*~F+at!W^|6L(&`PPVgUN(Jq#EqOBArkYHwe}7UyMKg&{SRZ=3eLk zqge@{5mH!$z+Vz5u>YD<2pNV=>gi>Cn{7us?ke&fbtg)$*;NjlK$?7cgr+!lY7X|J zq+vjHHq|a?!BXs*mmD1Yyz@dL{$+FCZBI1t{WEo#v@&nBK}b2WoYsL@*j8mWuM%vy zsD9|MJKmg@O>@Yo^@?$Jbbo$ZBaeI);P!=GVj11B>}D+2OFt@HY&|IkcctsCzZKm2zk!IU zJ)p5_Py9|2gxjpQ)4+xN*WO8gkIsXnxmj*tdb38w6c&eOlhhH5{BNH*ra{Vs_%JZ~ zTbY~s%=0AsVupAF@M2LN64uKTv&D(EnwUFQav5o=XI~LFx{%zx^qP5(>+q7Fv)^eL z&Vy=)JD>BalZwXZ>zStMCH3Zjqu9{F$W(@Z!d)i)2I!GR1L`={?MtV<$Xns8Ah~CkLN?9-^+y(0jyq zYs*&{&h+w4#{whwCyeytd%k@~#MVEylYoJ@Z?Wxodw3@01$8`mk2uLHcU*!&fm0py`OySM5TQ}Jbq;2 z7_cI`nHL-7WJJFgTEXmE^RA=@-j%AqdRHR)OS^`qtc$p>k6-(zBQF(VzfZ(XH2EI&Z2EYrd{zaEpn|Q8z`(`)zp5X*DAU$tiGJb;+4U4&q*+f- zIVEnYtbucmd>~6sgD)JX7Zwy7r*-lgdI{k(1;CH;X{qdw^dSn6s#{^Oq-wo6?5JNU z*LK+CqK#Wd;>K%$g5oD$3HB9oo(}m40IT2nQAPI$zg@^6?g(7Q_I8%*9aHEQ2p#6u z0o3l4BOC#u#ZZ?TKS_XM&i_fR4cx7w_N7fE$IWMn_>^#!{O_KYgrKoy>pnCj_WtSB zd!oUa-PeqKaU)5e5ogPC;B0w(&DnB5)wg_)l%|)0^flx1 zt=IBTHp80jCqT0;ox8#Lq5b95g0+=wwxFcQ9MR_bscXTGmR38UEx=C%C6Gq-zU~~u9aefjHTLaG zCUE-@y6fGIRKp%&AgHdK?`88xEmYOwc(i~lq<~C^(vrCNe~74uc@7&>f(dO%zAF!j3?A4F;G zC>hM@BV=$~Tzty8HbaGf-*AOA|HBF0`gQcQz6|#Ox(l1IsRxV-=?fDNB9Q5*e$l3e zALlu~q2U|m?5O4O7lR=)EA}ngDsq^6eVB`%fCtrk$!Yl9e z<;+D0`?lbEd%NcQPN8X-sJc5V=ur~W3WLbj$Bu} zX$!qR`S;SgN`^U(DxU*yn@T^LtfcISkP;i=gE!!O-`?Y-&x#|az0jH%tKro}dj8ek zO?nDkcbQGv3_=@pomvW&&Fg)3q+CiJEB8@cU*yJFh*-xyEOb<&QB@fSQB~Jt7d@m? z=@gz6&KGQHjZ_#>Zhb*8_Jfx~OrOCqW0(<_N|&;eduX;w%m_r$CT!x&*cF=cI-?N- zI|WrP5J)f*dWiI?k;BBpt;eD^nu@m79v64}VUqUcyCO8c_v)=xdE<_m>m+DY+{vi3 z{xE;-JcFnbZsgeadnwj#?W|O;<6C;x2sjKALSwPa}XoM`1iy8 zh3(ieKLt@Z5>^EIA6Vxfd5#?vs8jnP-RB&K_Fte*Xm#wrB|7@x@NW9u)SDRO8xrWf@5S1cahv3wNua7A_921f4sv>P7|C#27mrrdBYun9$%TC@7I)4PY(e}N~mf*=i>l8gTHlkPjqSi8}}PjdlQ@M z4HU;OPqS*eO-)VJ0Ez}(*=E@z~y&e%XXtRr?N+Usu2tqTgu)}F>3fRl9dDgN%06Ef8g9H;MC!tS0 zQ12wr4J8AI5JKuCcAaYFD6^_R0?d&B5AxIx9^~Zr9B*KH7`i%!k zgL{s<=&BjO?PWtdm)QZsr@%r6Pn?CRlERO$#n~oTL=C((o?7u8r2Y8v&E?jxf&C0n z=CGK*WYvf`-H~>C(aqkwo}uoz0OLup+rSpDq`dRB#;PHYFgQs-kwjV34x8l!)9_k7 zSo!9+tO54oXbQxcDG4K-rSmYtIpTKtfQr(05w<&4N)j?Br!F%wqYV7P<(Zh)_pq09 z^JQ*Wte6_V5`GB!)64v_x`ndR)T_=Ww{3?@2nfbmYks3>WMt^R*|WpJuEof#)uQG- zON$a4hZy(+cR%NkmXookPfA_+hvg&$drr1|75%&ABtuQJjK_Ya)j1kworP+Rj*c

?Ro;RX4`Ot5ND1klRM=bzzrGY}6bf?R*43y5( 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�5q2dT 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 VJML~v%4UI|1A7kdF5KyM>0g`mJTCwM delta 532909 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

GP`;h4@>KEHb*U6fseO)jW}U*Ie+IWK$^PC>b;k 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

E0g=HTE4N4F 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 z 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Ⓢ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 totQw8Dj>v55ttxx9^TU$-=+Ec?=N?M(2 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�L}Z&-0ugBpK=?=C%nlX`wJz
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%0D&w|lNvwhs06y}EC@{CTtQ!oins&SeMnm6%4}IJ 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

E@^SHH0_(;=qp`u@F`(eMzNQb05%eEL`oCr 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 z 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

5vFO8% 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

b@YSgVR(>$B`}W`usWH4_@>NZ88uz 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 z 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 Y^G@R%f^TBGA)cynO6Ql%6PIrOA3Jl+rT_o{ From 0a8ced443f4961377ae1dac734e3ba0765fac402 Mon Sep 17 00:00:00 2001 From: Verkister Date: Wed, 3 Feb 2021 03:47:26 +0200 Subject: [PATCH 17/19] Disables egg contamination Uh oh stinky --- code/modules/vore/eating/contaminate_vr.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/vore/eating/contaminate_vr.dm b/code/modules/vore/eating/contaminate_vr.dm index 5bbbe902c76..998c7b53c53 100644 --- a/code/modules/vore/eating/contaminate_vr.dm +++ b/code/modules/vore/eating/contaminate_vr.dm @@ -105,6 +105,9 @@ var/list/gurgled_overlays = list( /obj/item/weapon/reagent_containers/food/gurgle_contaminate(var/atom/movable/item_storage = null) return FALSE +/obj/item/weapon/storage/vore_egg/gurgle_contaminate(var/atom/movable/item_storage = null) + return FALSE + /obj/item/weapon/holder/gurgle_contaminate(var/atom/movable/item_storage = null) if(isbelly(loc)) digest_act(item_storage) @@ -150,4 +153,4 @@ var/list/gurgled_overlays = list( if(pockets.contents) for(var/obj/item/O in pockets.contents) O.gurgle_contaminate(item_storage, contamination_flavor, contamination_color) - ..() \ No newline at end of file + ..() From 10b5d2eb96ce60a4857546db84753a9c848070b8 Mon Sep 17 00:00:00 2001 From: Verkister Date: Wed, 3 Feb 2021 14:52:50 +0200 Subject: [PATCH 18/19] Fixes nontaur clipping I'm not sure where exactly the code was pulling the default taur clipping state on the things that supposedly only had nulls, but this time they only pull those if they aren't nulls --- .../mob/living/carbon/human/update_icons.dm | 14 ++++++++------ 1 file changed, 8 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 e963539aff1..c84f6b4cadd 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -287,7 +287,8 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() icon_key += "_t" //VOREStation Edit. if(istype(tail_style, /datum/sprite_accessory/tail/taur)) - icon_key += tail_style.clip_mask_state + if(tail_style.clip_mask) //VOREStation Edit. + icon_key += tail_style.clip_mask_state icon_key = "[icon_key][husk ? 1 : 0][fat ? 1 : 0][hulk ? 1 : 0][skeleton ? 1 : 0]" var/icon/base_icon @@ -301,14 +302,15 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() var/icon/Cutter = null if(istype(tail_style, /datum/sprite_accessory/tail/taur)) // Tail icon 'cookie cutters' are filled in where icons are preserved. We need to invert that. - Cutter = new(icon = tail_style.icon, icon_state = tail_style.clip_mask) + if(tail_style.clip_mask) //VOREStation Edit. + Cutter = new(icon = tail_style.icon, icon_state = tail_style.clip_mask_state) - Cutter.Blend("#000000", ICON_MULTIPLY) // Make it all black. + Cutter.Blend("#000000", ICON_MULTIPLY) // Make it all black. - Cutter.SwapColor("#00000000", "#FFFFFFFF") // Everywhere empty, make white. - Cutter.SwapColor("#000000FF", "#00000000") // Everywhere black, make empty. + Cutter.SwapColor("#00000000", "#FFFFFFFF") // Everywhere empty, make white. + Cutter.SwapColor("#000000FF", "#00000000") // Everywhere black, make empty. - Cutter.Blend("#000000", ICON_MULTIPLY) // Black again. + Cutter.Blend("#000000", ICON_MULTIPLY) // Black again. for(var/obj/item/organ/external/part in organs) if(isnull(part) || part.is_stump() || part.is_hidden_by_tail()) //VOREStation Edit allowing tails to prevent bodyparts rendering, granting more spriter freedom for taur/digitigrade stuff. From 0e6a06eebfc28b2747fe6c3c045a9fa79e77dfa9 Mon Sep 17 00:00:00 2001 From: Verkister Date: Wed, 3 Feb 2021 16:23:15 +0200 Subject: [PATCH 19/19] Feb 3 whitelist update https://forum.vore-station.net/viewtopic.php?f=46&t=1907 https://forum.vore-station.net/viewtopic.php?f=46&t=1893 https://forum.vore-station.net/viewtopic.php?f=46&t=1894 --- config/alienwhitelist.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/alienwhitelist.txt b/config/alienwhitelist.txt index 7562e69c56b..dc88467f4b0 100644 --- a/config/alienwhitelist.txt +++ b/config/alienwhitelist.txt @@ -3,6 +3,7 @@ admiraldragon - Vox aetherelemental - Daemon alphaprime1 - Protean amarewolf - Xenochimera +amshaegaar - Vox arandomalien - Xenochimera arokha - Protean aruis - Diona @@ -21,10 +22,12 @@ draycu - Vox flaktual - Vox flurriee - Protean funnyman2003 - Xenochimera +greennyy - Protean hawkerthegreat - Vox hollifex - Diona h0lysquirr3l - Protean inuzari - Diona +jademanique - Black-Eyed Shadekin jademanique - Xenochimera khanivore - Protean killjaden - Protean

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%0DU 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 z zkJUK*8Xjr)(Pyq?*}s2xNut>I>*~T7 z+VX6{AZ^)dwO4a`(}G3tI0!7T%XE+$-a2`0GRdn#L~VEd2}937Xu>RLv&;-3so>l7 zIQSDuX);ANx`+t|%Ag@I`^g$c_OQaD`b`7K)UhS5DLe&arv~#LsK`)g>N>K46mz(E zrDcIjx49YaIz%f{E)bIb+`;jGf}?l!ytv~e^uFo7*|q&Rve6MnvYIz{Cfsu+cYj~s zz%lXX1`Ys4gH()EdMQ)9=Yre_Lvdj_q)snBTM=j1)0ev?OtZaRdBxfKFRwk%3aq>fzh$OOL&sm%k>vVt=T2{q3R8i>j~5HO|zAr}A+g|}xwZ5y;M z<2VWc`rtbSi^x@kQ^zJrRJSPD0^1>qA|k?pErB##aNU-fh|gNTXz)gj+v^)OZc)Ww zj?Z3`p5q|tdF)ORYeM?;FI^_sxqAccd|1SG-+x-Bap+s7)wYTrAtHkBc6ZS$X@lA~|3^Rv9Fmq}5z0N())RNTWALB}aOr$_- z7Uug%us$4Bu*oshUr|6b>A~#+AUDWssyrZ-Hm3nZmxm9>U8{Lv;_`KV+Zp$rggbxk z`uJ_xF_DmtLd{v3uA@O94}qh_EUOZ8iK(H_(C#M);PCf^_go}Tp&-hH|Fr0Bn4&%1h{2wZ!vo*&^<8;X4sR>=c= zLr_AF?12U z*S#9-eaI(7@~4Crt<#2{J5CCvekJ^tmgY;c*`VYE#)?eyoKcxI>4?e4=?%0RRXbMj ztfczPfq849`)iCy0cz0|t4ipMV2AbQLio;wJ)dbr022-j^lB;~YC&yaeByiv}|@hbqS zVP<0LsO|H6V#b#Bz|yamVcZbl%{z>mRF&ARDu?RV72qs;C9>em9GgR}*tk4Y{}Tnv zAzK$*Fz?iJH855vLF@DU(a{7rD5v}_TloVus^KCsC!;rQoCWH<+4@tx;VIA62w@lC zc#h$Szc+GH=C6<@lPzNm9{`pZA_yBo3nA^${SuXQOlNj(ldZ;oLF6HC>tjV z%EoC2**J}_*G9YU1X4PVt$_UwHT&emM33S7p6TO?G0LK1Ee>jYt`R)XXgczw>=4jm(t%*tkOF(u1bUwQl?06xQsID038k(Wz9lp{xRnU_CgS;bFK zop20h($#j)biegzBsC0)vh8XtZmsPwn+i|^2{-q$6aO3VY&_jv!K-!7i`!eIKuf~~ znBmtn-(aVKKqfJ_;9jgO_t``mZgpBHo zh>n4=8^iqQX6VV!!v9etv65!Stx<^^L4%)6|o#dDNt9gI`B>$ zr^d*_sh@p(!A?-c2lC@}+b*~%?m!5#f^VBm#U}T!BP@kO!)dk%Mp~W#;WT|>_b%LQBI{v2fGk0TBlR31eG3t_K3Zvs-t?{e$<;~pkHmZJ8s`AG9uZZGY$5Dz9(D6OUw zWGwLz%fU!U|607zBw?|>c)=c4c{@?t5*ThLp?r;(E|K2}4bWzVOhR+&g(CfDfHc=_pQMWaBnzx1q#^s( zgoi`c-IrRkPa}gN5JdOQz4?OW3NRtA*`fl$!$OdbbT8a(*Wdc{hihLUdA}7|9f6Xx z+ernEmk|xjVE3S=?$i-7^YZWB6_v(UL*cy@X*%$6pfIpKvnc)gYq>gD*IEcx>YmrC z9$XTWo?BV1MyN>8_Lx8!Gy3Qr1OPi!m8(j-H1GHJoKn+tsaqFy_qa|O=Apkznytu$ zEAWw;uEdvC_ z$H}6K;GYK%@!4DCyi;orZ7l+byP?ZjJIp@A;`or@K3bo!xln)|*$_az{=}ZPRL@Xn z2>7bRU&XOC_~gM5?pH<^!`TCF$K%>{CA@t+0VWew!F-nWUxQ^>eh-#G%rbEP+K3SS ziiAU(J$z0faBHmG#Os{Kl^l0wdv0Re1p`U_^OZzM(3D9CHk2Z zF|v6W3B_V>J|OSSgOYF*r)FFbD%H7Z5jd0=^YP^K?PNzQ$H@6^L3uG%#e4#5c`oF3B-XY$4$1>- z6_+WryI@f0;L|WIkQd`k#qnX6OfS5<;Mv*2&;%wnrd_h_FpLDo^6rHEuqv<5ySmAq zQDk1dKWXfFmcw9rX4uziWJbqs4(sy+IufJVTKu93V~s2z(-Nq-S%nYBR|gE-F7ai% z9!Si~NBt2CGhL(baJmG))|1!Y6CBCOWPKM9&9+MbY_;8_f}F(THi6bpeh00mJY8hM z+(NrSi69BdfMgG<)R18NuUGxVotV#S&Edv+?(=I1_3_^j>L?OI&9XK0D87KuxRkiz z0p-805(p(T24XY0o8&Zl2zMRni2a^}Zf-9vtRI{VJGhJD>om`oUHxuO2PbZ+ zKDf+EvZ;||+S76<$4jgs+o+Gwb-;@PG8QuS^rY#3^0dBoG;qdgV$M(W7@ZIxWHv5* z{uRB$eoY!&lcddZePU-g&`>Z7DtTJ#e~@Rt2?>)Dg#W_t{l^Amz3*?3HSR5Fu&dSz z&eB1I9FQt3X(gDW2ydZq7l;2=bHt^1PMw3I3ty@?K8o=UZFfruE>9Wku>U+l6@yI{ zNGcC%D0-`u&+>8>?)kEDh6$vF7*|1*6bNw{?YqV&e4KnBKniZ zu38Z#&bfq4{_L2+rNOQ6V-Ky<7TSBiE`xC=lAG#Chq}gg7MCU^{k(?Uft?C3e!6}Z z0`lw|d)DRI)7N0!+V!8f^~^8ax(^g{=Q=tQ`76MI>FUl-%}eo=GS}};@T?Bap%wuc zg6^)sl}L-4=YpNth;nl?EplMGEbn{ImSt^5Z(cUzd~>65&jkNEkwMYSHm-7IvtUxP zKNL+lyqFOX{HH?@FuiwNT!W;a&Ee7q4dJA=!z%C_Fuy{bC-s+86x=Z%JPqLJ@d7Eu zf=~5xc4mD(S8dunW|nZJtCc#MrST%urxQXFqaRrGOHN$CT)6;Z`dR-i#0C2+#6|ue zAue2|q*d5Ldj)BqK3k%qq>zMT`afb9t_ZP)nE9)E`+QxtzZU?7wLuUJn3=|GBdx#{ z*Hl-xVLb7Jjcr~B6L&qKydYG}BJOSt|7B`^x)GNqo=J?yA#ipwbeucAvx7XEI+~9L z2Cz33`9WysH7vjmP{tufKsQ~_5N9piVk_f*+|yo$%Iupk8&wtqg0YH6VAZ7I>%Vv4 zq{xMci0pR$=KI8UqhIb!AYzV9SwUa57;>&vAyGvXZBzY*N$Qsh1j3k$uuK`g(D; zM=!=w@UV)=EM`8|umEngm)>dZqTn7w90xnCb#oXg51Np6T9=#96*v>mSca*{e;K?< zK8+ddcyjJ1y!vtR@pclY#vg0VqyQAN%<;;2Gw7+v4((5@W=K=yi@P4f4F)r#?u*!pkP8`%3A zTF}~nzlU+_o4;^t=_jokH>)?rqn&$r`?I0H^ug;a2Ba6`0XUqmWD+& z#g+}b(Yvk;mj_-Hds6viyLq-x-5z5M$c?^Ix*g=U(Ql=74`T{=Vsc7k_f45VkMM zizKl@qESb|qFW8*StSyHXB9x%m-bph9Ipu#Et?A!NNj|fk#gG2o%QCFmH#@(K%s~e zs)=A9r_DGC$9@2C?8Xfodrbcyf%cXQ8I=C(NnF`#s#L1SC41%M)a!L^DZ&Fo#R99f zvPPtGR~6T;?8Yu>Nj|D?mpC3ph!%rg(huKzKi4UAh`+>W*j7?eF*VX~)t*mH)e4M> zU|LMA0Z%h~hcYP0JH&?jwn-^`>q%?ei8JLe61MQ2Bg7!tr zP$$_*FC}zIeCiKEMk*$Ntc`MSX3b5#HiTIdqk%E+pOR{*qXsxPj#OG9IZZnO?B9xZ zCXk8O$El$gu?b+MHyB^inxW;<7nXhN*k2f6a*1z=@=SmrMo)>>6)4EdCy?%-g|$3 z_v81^K6Z88hkHEl>s;6Cyw3B5VrZ@kialSrR^5SY`gD;x^Pu<5o0^aH^A;JKOkT*1 zcxZLAsh|mh_Rmeamkxcj;pI!2i}myKzPpQ8zPC(Re@{X^soYaL2!i&Zc+gQ`<@rVF zmv6KOzc~z#;XciKmbAL;L>9zRdGb@%tDE}^??)xBAmxN@{u~NKng7J3Kp%Mv5R>nP z{nJM{3e429s@m>qTI8lAt>>*k@WXFa=0&6lXWUu^8Z$=p)j=Xto_ zS)2S&ypn0+mM{T?pB(4~Z(Wha9RUPX1= z*Uzu6lat%b`~~j-Wd>}|;mo%CV*xmZ#irvXff%!g+Im4?&aHA2bDEbB zG%8i>l(N)yET5Hl`9yDgWl-~%;8o)K>_@Mv0m=&0cUU-)uN1a}Q1iIhHHJ2C*6cvr z(V83+b4gMu?`pp}$Oyu6gzeqrHX*DTFWnVOgvz^2+ri>4(kQcjlmxB}-#?Jx|9_Al^BzX|R`MT~supJB-#Wsmt-iHA6E z!UC^i%+HeE0Ab0(P*`$0waQ0j1G=WYCEFfcRbgq0nfdhO-@ruGCaM)=szq!@!_Px_ zNO%*vRFo@EI|EC{b&!Ptg~(qzO=H>wWw#>_?DqCPa!9kQsi~>DIB4tPaXl+1JeU>* z<=wG+t=)L%w7|Fu+#dv*`{JSNRI*EUNEy0gA$wByS0Hsew*b0H+1(3sITynB3?NWk zvJLby4$#15P8bsoNs5REx)i7P(tuNOXBvnW>zuV(Xp!-=Iarlc@VJ`o#P1|~oNFpJ z)D9b(J*8=EETH-3`D=9$#$%q+P8rSq{Jk23h>_`4O|fL={pNani^}Gyo{szTGZF$N z2?@w+vA}8rA$b3TWJ0|IkYg8MHDDZnPxMY(LEdT68VM~b6)H-d?Jv=$mtqoP^$x{9 z9YYGMDs&K*y-pvrbVI3P5s`MqO@dr~Kn}KO5UBnJfMatiF3ER;%W=Nl`U06F>J~YH zztw0?c~%}c;wuU2;eh4;AU!;GiV;e zb)=H{E&?WX7yq@6A&UpMsI93biY$8{1&i?7+!tA%+aKI%Z^1t?SeHvH?n8hdR;dlJ z6P|1Ry2_Nu0xI@is$s{_14o<*&w8*LSJ-2D)9hV zep;`k-yZ8173IDRvDT3gbbSdx*V)L#ELtwX0ul%k_Xf^2F^mkes$|;-9MEVCSs8y+ zAK^*6#CHWQ3 zD-H_O=U7UgL|mBc2ZKvDb(5ts(}@oToG78$r;@{aPu6eY+fX^g$@?ED61Cqb5`*kC z4kC)AwWlXYL4M`CNO=GIjf+JlT|>E~{ooJi88JTC@wQ^MwBQ*p5)T6qAMAgN5FfnH zfksF6Pop%?PouO;`u1FT8k~+Yh-rUTHoWmc7JKu>B^vQ*BcS7Y1l1^e(D$f}IcGId z@j#dHY}9V+sW#}K){JU2zLUWCRO1q%ofyW$4h zbsc=}IbFs%eBK;-YS>2k)7Y@TZWPe-h~&P(S&J+p5dgK&f`Xc>nGX9|%z7)ji?CsX z+D*`yPTZ}cKXhr9#s6EEW-;E=rJ>CWa9u=QdYGhv@$vtnOUn~<=}-TIE)DxnUE0$X z5Jx@q8E@Ly+A(3O=%J?*1l|W0Jffe)ao$Jo9-_N60+Ap zwUyzA5%h_vSa9NQug=C}RpMUFzQ?B#w&$tjpPzjwLy|$t0SWHL@m8v*mTDYN)%ac~ zw)aTXg%%cF$gS*lKrCImQW#BN^^G{?{anM}Q{Ht?DhtwzF#f>;O+jbmO5EvXMzXWC z^e0Vs8Tp9A%9X9=lyuThFK>ku`zO>skAM&(ioD3~#3(Y70ivPSJqG>a2oREno7rkhySVY8PGBNhT;0{TJ+rW3l5-tG3~tPX&?YPr zp|ha%J3w~|iY6pRO=)1|!hUMfze>YrJY~uH&{PQY2-NM=noa#sdJd*F4P!M+UuQ*# zFPlrb`z00hTDNtTnRM#jrQS6$K5OX6j4*DxI2JDS^dGIogGqT&X6LQf&z9V8aT+{y z_#!ad>L8PS^_15k(vIz3_53%72zF`hf7+!316ColS}uQm z`xRLkr_-e5OG8ERZh>%t3(ko}CGFoWAoQ9%;h22VZSwKGjGJp9uZG@f%Y-5m?TK46phae@KRyMVnrC=CbMd6|e z9uY{7F5Gx>gS*b9@h~OuNn^jh3Y+ z2|^}yHyw*r-#NFi&0=GuSyFoJq8fjroALW2&4WQv+=Zbgc@tDmMufxo&hqeFW}+%| zk4tVPLdSphYY+VXSLk>d=@h_Ye zZ`Kr3bx{(kBmD zLGA^UO+x5D;ls08IZUNCId`qW``FkSXG7>IEo684M~_fIut2A$qM+VCgye-JO>lnE&QXWL>9*Af>M%1I z8(archndJO$($%Ba6AUZ+xyV~uD#|>B93|{BAM-N-21vF#)j!-aF#cp=>@oAde=4m zqhw-mnDlHsh_??TGCdysW_pNU;UbX!EIP&q`6nV%cj`96W+(qU9{k@oG5~rg{2DjD z;m)o0{;}Yw)ocRzyXs%T->SdB-yAy0902_7H%JgH2x9#&dfCrt*Z04pT~GZ-v}>Rs z(dvvih#y(V3krk@rtdZ1pzRF+!TcszEJ78~P33_lv)WH5c z*bE7`{yt6UK2@6qwgS4FS)7eLNYX$fV49G!46x~>)Xd0F9Uqs|&(Q30_hieoySMzR z#6UWh-nxbg^k7KX7r)4{jHny8WQrGZE7%%0=wHOx;zI6&$kzn03Im)6NBs^j~eozi; z+OLsrE02qBv=Y4Op(zNZ zv4TUd53b`>f|HF;E5yfrGnu2!cHdpcZdCoa%03gOf2bH9Yr{lYtuX$|@0F(nJJdmd zz|~OwcbFlOugpY-H}DAjVt51J3kvh2a7*FPxQRAe;A=mDp8UV`V9*v_ex0pbcFT}! zEccd1P&RavI#^*X*%2xr6v;ARBg;R0It@oKHUBEHlm)@%6%_@Rl+2yCp8ArzCF}hh z7+xq){2P~>d;Hn6XKrNsy(HwRK3)@KIZFBI?XAk@?T-kp8(k_@x6jp~NZVl^@UhCD zgR&Np%`MLAL}YWjmDypy!++)w{+i>yUrHm#_0xHOS(b&_AWp~ToDnb-Z=hzj$A;WE zMaABPn(#iJwVO_ul2aOt_Aeb!zo^eZ`(jLsHRY}=w5I;062HkCID$#w5Aw#tQ!isl z&it(t^Liq6rFZZ;G*Ib@()@mr|HfUQUTmZ&2u%jvZLPTC&Uz0Z);`Zv-x<<_rsQ}1dw z1m%sdD~Sk@Zb}P>@(ojSr=mgfm#5nI!G=n`lFDwNz zyjan~s$2VQu^+)D1sU6=!W+QLD#J<-I;K(}+djc^jLuJL)s_I+h7ARKzH*!^Wnm%F zIhS=ycu7tEsaYwLMOQEiKt73c!65C4D(wF`3=r^-=-yZ~bUwAE08&^E)JDN0U(WTMzQHD!-%=6?<7lhYSr2opj!9CW`R9!a#I;J?02jC@8Zp*7C!3dSTKe=&ojFeCp09eEBae=*@)mda4T|gK;ZL&Tw zeDtq0c7o%1N5)kU75IUG!2Y+U^*33g^=ID-qF+7|riGtx-oYbxV&@9}?4K@pH2_qQ z1o!?Nx1lLr>3B0{;nT4?N7z>P;kvcfh%^mO;Fp4Orud#!B8r zeE*qKK5^c1yw;8$9y6y1u1pLL2g^|TQnRc~+T zgG`mozBA+f`dMqzx1yrVt@+XmaS(H2@$$x%W-J*$E6YvL2Q}(lbK9Sxh5R#2^z&W_ zsL`1t;1a$w_R>mhu%eML8c4j8z}>6_Nxb3b7(rjW^EO>5Qe;BT@#&Cx(!DK@y*$yE z7C0HnAjxY4m-8-m)YT3AbQ=~;N+`;~yKL4avB!l4Q8j?H9Bk&u`yM@UJI<>mWVXny)yN>UL#db4_9I;+bl#bxm1u*4@VwnvAS~?7m!eLv~ z(a?w?YRv-}(Vx-1>upeX>kK}}z*Ru@*tyO>aN&*|_={Hj1xx}OuNa?}1*)P&>o4NO z)qn7xmF=(VkBux#H=VF#2zJb~HaXqMAwIc=+F_W(fRBxUMEo6IscH+S^^3fU09T0* z2@ZGeiT6pdG!8F4HtpX{^U^HqnH)9oirg1^|je-3^Hgbb$d zVWPuc1}g!B@I(%n2JO?%(hP!Z%kLv@rdFw)eeW5n-)RKzY!J25H7HhL9X!zuG6d-g z=w*AfNs9&0f`9CGX;D73AI(L91bFbr3V7)|Y|?lv*p6{Bx6%oV_cgLRfpSO51b-$~ z+i|rHnQxGCm&VAI#L&Kus;*ST9a+|hL~@NKe1qT-9H5^48$4np48SAklq!#A7R)Z$_yidm=o7(%h`-N{O!kgA!fs4&JXTYi2*d~OM@K&Y&HuxTOqR3qz$_d6t^- z)Xme>DM8-6Bv;9hXA=KlFo#2ogIHf29;d+~E^~>nx=tB$Wu8yR54g|I!!8w=KF_8t zh6jVlM``_(^5^p@R$@JdM2~)bjLRLM^`UE*@8P*EbNy0T1-7AdzP}N#irB6WW~Ew_WR~Aly!uD;kIy zguN+y-3aq&VJKk@^G5XOMH}#*_)wpN(3fYY{eZV$&#qNTs9uk!s}j7epHK~xJ^3)P z;8?!)?u30R9)y?%!hS2Ab&O{Ji_+Qr9CF}({4YwU3*R<=xrXKEP9$I08PXG(i zOT+ zzbj*qliAj3><)K6Lp7Jk*<zjkYrV>QX7mH=5U|uV*zbTv- zU}w}sX;uNK>D%F|o_eQsIjiUuLaw91TO@le?Mn_jjrA478Rbn$S#x71Ze=+wnS(j>Q`4?&u&T$cLV0UY#NWbMJygwc@-vXitkZ%5d> zKFEymG;IeUZXp!sOiV_cZh=%qt@u0k|0zr&+}8Gl$?%4^-(WYC^tht0+H&!KLUO6v z9FB)yfBKN%wWyoMH=uCwKNpX{bEvl0(fV)lB=m`niSvZ2@AT@@1@}DJEr@5m;@mw@ z>^jCkW9#e8|1f^o!RV3gpwt006uU;OdwmU1w(auAzaim?q3XgrGUkcX%4q{(m*$_1sZu5v7msTqr*UiP zr50FwaE=ftbN{2}IB79{7n~lFy*d;$z9dv$B#w_*!^lV_E1EhwEMG`bkz-<~Z~2lf z`(zl2c2uveeT@M60@i9g3Wxi9Cu2eT0)BU->{EN>2FHwiR&69+ro*aW6fT|euF_xC>euMD90|1`N zOT}>!GNrbGN9PJq{{-Ha<8HPBs?8!TxT~KCUtJ_voxpu>)Mp$J5`}nQ695W|>KTl8 zK{V~!UA5e37M>#mas8!h)k-}<)~xlO4JUZ7`w~P%B1W=tb!Pa7%?hA&7HFCqQJ+4} zx~v&UCPZs$yh=t^;eFnOi(amhkq_fE7o?%?s_h3T!N^w9OLYB*^xvK_6QTccPfxr& zH76%y#HdNJQ>IDgc;G667Qu2UEB3Jxcw8U^3fv;T3;&4F_NBA-)e`l@;L`yxvU4?Oc}0KtHliQlFz>e&^^B5&i?*OGf8;*)OmsZy=JoNNIQWJ1Ep>I%s8wXs}dmRb5k_ppp#X#2J^>Ybo_?M>NsQsvl79@vjC@<&T zPbo^h|6Zlw2JH=4@V*(uceer{jbKf$1%LsRcl~pX z@PINEimkug_US)RyL?WyhNam=>!%pQ9&2|Id^>xr-RsV?A6PSTOD`sOQm6{m#pZLx z#9RO%=GnbmzL{~27EvbCkcPC2W?0*|bn+~hPm%7MOHO;9sn|Htubw>qaa6O?au~|x zJGz(4x1o*4M*f7i7^WBC)Z>-xJ?iG-qg zeinC-&F~QY32S~#|KF<>|LobF!>yk%&XcByr6A_|{M6R4@p&*wWn(f}?>;tYdNnDz z!Fs){kw8cKIamEbM^ZgU!FLjt_=5fEnebz@9A`a5yp#&=QX~Zw{255XxLi?jtqi`e z@&qU89rh?{>I0p(-|HH=C{b~~n>(lXFchTeJ#s5||Dj79G4U%K=oVecTZ9pl5UnT6 z8bp-uBKDV2-8!mIEBQcMZaK3nV&oa5g2s~|qx}gHd28-aF8Pj-l(fIU(fc&y<2k$O zQ&Vzx2K)U>?*rW~80dDItVP!NcNPJ^Q}Zxl8OKz>z)2OCpf;4e3jxm>T8QT(Kg?_0 z)AnA87P%RSZ!W8y}a z59TJT6b~riZe-@yx*y-zcDtDNvxV)2^3=d*3SHd)U(*$RX?(Yb)dI2bJG-8Vt~-rV zvjvPC-AIFgqk1Z|{(kwhlG2J7-Z{!K<4--D+%*}>#uY)BJs=waWh-55M;37*J3oK? zU1M|e7kt_nPV?fF>vp!#d7__(V0yp6ONm5uF5YNkU{|;yI-|yG`TFjmc)iRq$>kH{LkGsVaMO_RH($nf8$dQ+u5*0#7YuEl4S z-v0SAi^XGxK%cv;!b6b#9A5nzM)5xu(T2oflo&cE&Ep`4$r}QvP2}%G5+up({X#+? zwz51RunuG&Id#DK+TTYV&Wxb+P~QcJh*05AA$s@PCF`G8O2l#tj(UgXX zFSGgz-d7)<`8t03FGb^~S4e}&?k{h!EOSxjhIY5^TJJ7L_I2l*5`cP)%Mh`)nBGdp z7v35xVqG<$sz$NF8*_?&HG^C7xCIg!^T5v3l=I_p0AL+lO^`$5L1tL6IpGXI-7lCu zlayGI_rnRy_R14S*E(AlkEs>A$js+bT;BMN2uMkz1t2A(7oCsZpL|kPeq}JSqQfHZ zl7Q%fa#;B3j;CWRuL@_k3Fjn{5qloA48Mh%Ajm~{BX{;`1L5$;5;=$WUw3OHni==TC89uv z+zuiHxe0+H^HU*9YkGf^Nx>gtSBP?bj>dO}_*X$kGP)sZvoJTVNdE2WwmH zI08}!^3uA)Mfm6H8)VW7IwH$YQPP}^zFn4S++l%PNjWxkn&!@Qr@J~6*-!;QgqeQk z?Fv|Z9!*BZW*~}0PMd4)sLtp5xU8Ue28+Ib`KG@!nIwVU^4L(K(PNq?PB^>WdZR6L1b+6M zBSN#zq3m%u(?q}res(Jw4AswoHKRyztcWab?E(O0?sG*@j-SF;Mryn7kO=nInkBgJd z6>8EeOP1DD?%%IJcJr*f*oh{Tp~GuYXNRHPJ`gzSJtdZB;d*q{B&9*5%@N3R$Y%wK zyA)r+q&UOf{kIqXd(ZqcPX~Y*=%pRSssB%}^Kbt%Q0K6mbLjcKTJW;#;h!sf?^R*F zYgaE`dM*d&-G!f5`1EV|{^wKrWgTJgG>~AJMI?_yk{Uvm0~eb|j`UmBbI`j@(q;rn zYW!HnD1;J_)T*7bK$+0Q`txXJ;DYI+KIdtl^A}^j5}tc@VyWre@WMx5;fP`mN{34a zNvq|3N>e9d?iqLZJFmKHsH-y?B}Lz?uM!b4$?1$-{&Yc`OEzCN@$haYcwaAK`A*f= z8Mez2^$x) z`${@Toq)`af9f-3edE8MR`xQ@X;2 zfa*3*xpUtH&zah_&Gz4^tmQw2HE$rS33o&|^!^uNO>$O;B5>jrb>77me&6J1glzHU zvZw=BSGvKo_|9uYW1$*kEL?$%g-D=n*LL7LhOjX|H?HvGc7vqlv^#0f?on1gJ zCcPiuNi|fzFZ!;?R>2*n=L~0s?%AH}GEY(;+6+fqb%~YEE^l3XXyRyjdvt%QPp~-@ zlLiAZX}4M9ic2=1w3M8Pyp=L%KB5cds;>c8s-wKp0+)iBKMn^cMy})XP6o!X3SR z*E+ktU**dEtE$kG$YHIoJZg06Kanf3;n{F-V<|Gt&8H3L)&;L!UEbXf5b3~s{9+vy*EQz>k#9E^wboH@yB2AWx)4i)wxNNV z0mftjpRlHmul#Rw$nyZ*kBB`=E3NYJkQ;t}U*H~p>T;D*97B$49d3_x9c9We(r)wu zflXd>U-Wb`n~+mLn0u`kEMVa1;YK!doll%t4)S90{o4wXrmcgn1Hx<1$A!bAUfZs% zDg9{88LX%%uhLK}3#oJ!H6Ls}iZCu2m`LLE`aJ86Djp9D53jOPqcdWWI4)=9yqr#d z)9A1cM=sa8#~8Xmdfshm+FO@zO5A*XjNk3i_TU;(KG=&fBT4txiX}YKGXd}c z9NDT9G)tDO;|3aVoFEHOB7Uy~M6n#d`>O<465h2B04ppMxcV!T%=yG}z_FvptzQ-L z|CvdamQ-cSH!g7WvC2i2{yjSZ_f5bAMMxIvzs--yq(a);f@%y+Or?(}-wYGI zyIH&TDq`S?(Xqkq?h@2I%4RfLn4a^@Xw@cJi-v=tpx(OI^^I=7!1HRYtVK_nRa*l! zQrB%$ihAZJ4@w2>7l%DqSdp_0k|x)IuSuO%8r$)iHdHonP02c>6sn{kwl+R6RF_81 z?it|V&V6Hv&yy)JVKp+lRd@9C%=g|%>OdbRuDs)e?;RYkiIpPDoU@qi1dQca^%WF+tr*v0KEBJjF zJ*DpRAJ2|d(ABE>lOs32UwDz3y_Uo5_Km?q32CTz^aSF2MzeddG4J%q!7?VTZ3dA= zv+Qq34!y58)DTyK>)5mNE&GnD7ER!B!TwEw@wJ7MwGwzoS@#5EbURP;wjI3C4i>tN zTeWp#_w;;5gKWQ<+$Dy}L7~MxmSd(rqs3huO4c`aiepi4CAQ>kKcc=)$BThBxzE+7 z_2Vq|{tk{UN6Q4QvmbGd+=nz3f9sv_+QX&xt;;Oe&O|kRZ+h$LcYXWtjKjB)dO0+g zv4~pZ+x-?tJp;CeD^m;&)*?erc+y=PJ#dn%KREn-;i}o@$+#0d0mFmag$tWVqw|w5 zkA+`#mUav0EH*uCAUYX(p#2`3GCsabduoM&Lau*N8&mh(%J@O|ydXTd*`O&65tf@0 zTJjh+W0?AgTAraTI5GE5rtS-pYlk`548}fq!+j6BzX}&5tI*`267-FF{&XMRNf!R2 zk9YXU;9QB~kEEh1rYYc@;z#khRo$0GMfwELGlTbSw&ywSuZ+dvud?d!FVMp6qSs1E z?u$GlUBk}Jz^;>1yj+AaOyc0t$5;E%`)0{h(p_AaV^QLm9kO=sF5tdzS=nM()j-F6 zyXms4UXqKYBavLe(Tsiq2K{O9>)F4>t!YcMqUnje%mn{cyBc|H9_D+BqL2l>L{gmjcebhiaVf|?Qa2dnaEk}nQ>nd z*&H^Y_4>wbj5ptU-}>>g;QbG-(r{keKFoMaKM-%({VB=xIp|I_-(CwVC@E_NG6uc_};rsJ1+Hh1O8+3CS5ULJyd zQ)#UuD?OjohI;t~crT7tQ%s1f`#%2yZ@=firn`z?nvDAS<<{scsCwMH=Bv=B(HE3W zOC`IxO*!)19(ontoTH&6cA;u~-?ACe#MYC;376D#blhY4Uc+wAbcL%hWk|5sJ?kynmW%QjI z3zU&~t=ri$H*UAgf)XrjZDft`E$iey*PMcvjNWt*sS7PpZjV`zYvPo-f?V z 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≫JS zY)-pb&SqqPoEckr54*nH9%D7P5*bn=eE4|M@%aCDA8g{1Fh5vP`*|{r(Mm6K9E^(w z=I#Rmb>AR`AmxlHb;0S`0goog2$v0oqCYMK7JF%gPVu+28FR8x9 z1fCKD^?UrWig(`$6k20E?Uq~b@F)_w&U-|M=(${!ds<6tC`L;!-O5xI53!Bi7c2ag;$x1n*B1#nkiv7*4h^X+W41QKowBNzB4^5* za^&3@<2&v(g+`=aj#O~Ei8OJZUu=n)AHHU{XSmxgr;{iBwHvbxN7psN(Jl4nC?sYt zP#sOavCh7Lnl0z5WUh|DR{8v3+XE`?)2ZMgUk#U`VknG`ZZ1F3Rhm{0+q|+Ik=WYd z>Z1q>4V7gaU#@u&e8=p;+NrtQ`L0!?c!>*07+L|o=Ur9J9=iIZi9TPS$V8DP1;S%R z958v#=OQ=SLFrvA@#xLaAe9Jv3Pp3K(IpT1&3yvno#plY zh#MJq@=-$z@SRx00UMU^P70daG5x9K>`ddy(T0OrSA_4j*c+G6SobNmrp{Ed8ZMsw zf>_{t|CtuOwZD3HaYB{jTnAIQXva#TA@z@Ow12dv7%{gJre62udKM?etp!r|9eR1#?~+?+#oZevhmC`9;TKc zx;<0PI`&E0a}-1s{0t&4HwxE$zm*{+A0sQq-Eiq>sWz3)IYQ`Ymb&<;ug^T=`{kZD z`}?1=p@FAaIK25Q3-rFF-F(W!&$`9TgrT66ix2l0v(5juyW7#{?h$c*_1Xu2r=Y-? zwhP9{*$H$tC1+4M#@n*rzt>Ri{oW)CA9qN!#|8?YJH*hpNyFgLqX!+3F3-U46cd!_ zV7&3`a1nt^qmy0q1QfDS2DfIdk0pwonZmvoI=`rI6ZSB=GI?_ul#v& zc`v6fcp$1%XE9&wTemCVZ;JyK?$E2FzodvxQ)q@?%;2!fsvF$?wS`1%Tu%>-em z{l_2NXNo1fush%Q`EijNNr@y~^BMxtD(}W`kNE{^ujqmH9Q!1IH$$c+I>|Llfb~?r z@dtIc8Huza55tm5Wop3mzs$_anJ1#?a)EkT2Ueg_0ew5`7(1(mRO-507cVh+rOQXISg)w!^P zh*ikT;v9mNAlyxSUun=OV;lIf+s9#Sst*91sh60lSr}-%_C0TOVN^1kJia8|(~;T8 z3eNT%52aPrNv&iz_Hnc_`@oD=yK*BwY^~co$~gXpN(^P%t&1Zw&n{}`1to-G+`*34 zx>steT!PbL9?JhmXgI$;l zhf5C8N*>%G#*1JbKTV2r1l2V(T&qV_OU0aU(9^4Vp*rc(xt@s60b1}Z<#Zidy@-o0 zsO?p%#j4&--#o>}z~?qmDxU1N%H-2k4TKBnm2}}k@13XowArgdsPBO->-L#4gSr+k zun=!$pP=7=u$+ZMR#w&+DU#OnjAAnO;ie;03}MXx*IPb`y+W)`Y!%D~Ly7!6_KBI? zybH9x5)g!Rd__*{*&g24<8zQ+v;8LY0Y(t)w!ixl&a828ZK(0}HqN4-8q3_yN4;O5 zM}PFaOy0)cmR_3ObUW2kt_89ED7BZ3O(8q|ekRvoy{$|iTX8s>sc)@1W&vQ3@x3Qa ztgJc%gM&xc#KeY7Uv4M1oI+V+#)6km%O$xwBjfgW;fT@f!v}U9mS2&)c@iA{qhA5+ z+d8}1|AHQFk`YoX?H4Lu0P55a_p3d)*Iw1HlR*h#jA9m_&+wKV4Z~KG7UCT=dW3u) z<|MMd-&H>i0d<4AI8{HZay~J)e1!YPhuM#L_lr{YKFdi4zVbn%4TSRULD@zPf(5i~ zyLhh&nAh0G`|e1_L-u=I`}}IT{Cb?e@OxR_V`{c!vsxOX!!m%|*+{+h%g0)$eF|^3DfF zkQ>HS=H1SVInlJd5amSY;uI=^KO1F#!F;q`0z{rV4zzP|#y8P_vG&|963p>wdo3>g ztz%uiqgk(dr~N5-6fyf~-H~lpdN;kB7-g=cRon)r4Sc`91JAE&RmLtSw(W}StAz#+ zycBZzEb+-%&ZN9>tst+t{x+Sh!NsOm5^zD&K{W#r%C8jSAMGE3x3j(iG3jt46Wffn z-aT#ag-5p*IAl41*V&gINQn1xtAfI70lYp&3;lSqPfye6eU^g1_Dompm8KIsC(!g;49hS8>`juLkD zTyQZX&1pItXtQZA-Z7LOtIWKQ!etYi#c;rlcjW-@UNv!&IMMteWIl8ah+A zCQgsYSS(lD8;kkxTNzv(@A!n4c6&Q^TyUG2fPR?OaujvZdf`crZHv7^%qC|id$E&^ zriKn@+{+a@t%0)CaEmACFeTDm^k8lC4FZ;f==m5A@@I}<(%-#SV=V>9QSn4jSK zRIMAph<^V5sx!;y9B6{9`PAu)0N_he@mTwTeGrfH)!dJED`ei{U_!}$gq$3l{bo@g zeq~$(=^^=*;&{L+nc@7KB~$I~t+vRLU3!r#6OR|_7w2p2)d~#lA8~hx(4M4m!y@Z? z3UY1LvJ07ES7i0Pn!J!HTUREEj-LJ`<>gIFaFs@au&ZrV;|QTA&xP*56MLROHQ(_w`3P$?qttQ0eG&){hJf< zi1QD6cjvJRo0VsY$G_DzWD8Vjak^Q(ejwp#6zsA-7O%6R+t-!+UI`+(+eZ{?Yv%xj<9#lGvpjooO<^bN`u|;tZD~W z`OL7XIVhi>>W8a%bVB3_cKy}V9D|%ozli!Nr?-8hHZ*$~O4~m&f`)ybN~Cxs1=>=3 zJ*Ast{60SQ)Cntd6c;0-X4FnY_X3tQSRedc=qZTw>@ftvEHQ(kKLIh_KP!&%N$l9@ zy2qczby&_88Xfi$vztct1w4|5Svngw{YVKhP9&?necJ!U+?$6(!G?Xq#BEZRc1xHF zp=8gVA!U!El$~tJzAs^jNLjM)RQ9Y{vkob;mtA7)J5w0TFf-pZqxD{%_xlcK(dVx;(XuBFEKr&A}DF&p;^7VAji zz-x$A14TMA>=NhjB4$y;ab_TkR}qsiA8To%86!`N5_sSmk_h+M{x!!u!mq*EHjjU= zA;k@(6h|q0YCHY`qq{jlu0!be2GfT$e9yXO2N;W-9+NSTN*g;G8OdB;q`m`wByOdu z)B+Ig#_Dud%Bu^<4rFp$cUU{11eTpOsgm*_FxIC2?%G zD`MgYAF8rET|3xMYErT#Ar|-JXIMnM{{PU~0d&F~&V-JHB5lGFq|X}IF@JHf&?P%Ds9C!(be2hlw!u194!s%ptJkBxNtGy82_-`CEsS5k#O2Y3jYog- zy;^A-JLUI@kuR=ubN%yb?UKzVWnZm5GEU$-HL8D)lyCznZOP{+RP)5=7wJ1&7f2Y zY2|7w8vPF-{Zn{5kIzd?46iMaytjW1<*v+e^hi=;=d#w)ugDAYnIB zfy~an3yxfaI4Sn+%_YoJ;l0g9$kaO?{-t1;VnQ3!1`igqUJS&-&VO#bz;PUt1Dd;h z-fY-bK|%l22s^v8a>vb#rSvI8bq2l@pU3OF-WwD|jrlv`-oFm>KD#X@{9+nETZqXa^Cs3g(GNTwKOVShGNUv<#TzTrQHsd5z4y`;4;=O77i{lER|MFCz9-q6&jnl;cc2JAJA z%Yky#s?6_tD4SGx+S~6=EeFIe+6gsikzLEs4HvqUX+|gW3{kCK+{QF=0qcq%=mJF^ zCFSx_6w7M>Z&vBzi3hb^80L;H4S_FwqYNrsgzqjM{PBiDoqa&Nr+Ajg_Ti+hora$+ z37aj<1WR6ru=(HiXmJuW^|0Lx_z!H|il3JG!5d*ofxGg?PW#d>nVFlhnFQ~(-)abS zCK0*nn@!0TW1Vy6x7kD9Z>?P0;Aa+QB{8}YTtlB2Pg9Mk7zjPE`~JPMJ^-?%YErbW z#5}z^WW40jHdcO;VW_;LT}4efTh$oT1Q6+Y0(!oip_axjVyjD6-Ta)X`gXaExrP0w zDT)P`a5FX;n55)b^jv9lYsrAVbEQ({JJzLvWgLf5)7^G z-oHX@Q*;3KPjLKkA(@Jiy-ayOmvUN(8e@}6Mr+_SB|KIpF)||t3&A7 zm2hKE4f6OSXd7qWpA<0(d#$0?SPw5-o$Ywzv0cnCQl}>_Qf0E}VwRcNG5035E=%I`?jn?F zLmbaD-}trV&k6;5{UG)>c3B6%voML6NW?lud-PEb%ySVcxXmBg znW<9tR;)$q)_DhNt!my1ul8e^S?vo-x9$o*TvJuV?Ds9bF^}9DefsO+b=BP$WHHWT zPIoNTE23!RlqXh-^4+d$wa~ zDbL?#wtaZEy+zIYrRi>t0lrCcZGBd|i9-hJSqkmqD{#uZeQ}=9H-3dh>1g& z-Mr2Ec}U5jw{{Kdkc$|vHCs0;-E!?zWO66ohTC__5mz?=2-sifEj(R);}ybd5pLl1 zB^7#O5smv+4L|koW${<3q{|Az;6_}XvgViPg}IMvX=}yMC71TKEQT8O$4*Z;j10YG zvqq(`l$_hN6i%${(^PAFt*rkYCyt!rkFUi=$3AiyGioEl zmTA~#lLZr|sVnufQus%VX%=w|4^b|L@Aj7{e#MS%I~HfDDpKtSu*_KEr*j37$(^)x znMYZYhiM-2Sa>-5eCvTQ8-CbSU4!kfN}q?u#g$G=S#87T17ROGUD*Zdz@Dj#!3|$J zf+yaIUOE+^L-o0SeL!qTKYVADfWjv_(bs6v>Vqb=EZn+$biWR~y{jV;=xXj-(Xo~> zH8Kn2yg$mK{7@1~Bi96ff`_SIePJCUu>S~L5cei{PR zATFQ_nP?%jOwv-VZa~>ofE2;o`3x=Xt~lWU93N#I(Dmn4>r$G{Q2WPKo4W~B^XlD1 zaljng#S2Wj85W;k-l_U`Og+Nh;N_dlf z>%zPz$Aw|1qP3Cz0SBpQoIXk@#NNaXAaLjy8W!`>x)L%_M-{)IdF#I37EW!Pfj#5N z!343&Tf57txu0$4_gSR@U$7|}4xYc4{_M{(=}xrQlydQ#%}%A5kh8N&SU46J>a6tD zM1|yRV>mS?o;uK?7#Utq6UfKd5c&jmraYK1=zh_V0RJ|qz5p4S`_Sz|TOW@DtdgBa z{QP9qWBV4*Zvc#+q-zcizz)o(*Efb}-~e*w6NsZZjMMzsVr=i-05ob*-zF#1^aoIh z@Y>4V%vsm0wSPhPH#0T#(G|8>RBqVL8teVqQCI~M*06DaKv%e8fiz_@2OxbT51ay- zSSa79rmACT#~-s#lhd{ZgcMe_tm^SB^2V0=G1p(TVSKE6%lOdn88I8lIMFN%$T zoqn!eeDQhe9jW8ihjf|#o?*)wn_5o3z6*;7R*&3>qI+`MeX!tzNTB=9l9=Pl?q81E ztrlJ+#5#Kd?B@0LltT2A&@!@+7&knmKUmLjil=5L)T*!c?x#=p0-HKr#ix9YyL}+t zUwy%Ti*+@8X@;M?1kI^B8aDd@e1~h@g%@A9yC4y-U~cy=Q)!R4A%4!69g4EfS}T3} zm1^@=&`1}vFn=S>2|hEjaY5s9TH2>KDy?op_2E}vMK@s@`!0rDM+)^r z3&gQ^|LHs>T^ zdDY@(2MB`|mOw}(!#|Qzi2toqhvskfA?whHLaCLmuxzvk{);!>soR^hulY7e!>&es zpy9H0s8cT&?do<=#8ljm5N4kpAo2*e;!-IMF1}1P%1?oK)r)S0) z-Pu|_QWZ(5OvT^RIyP9OrO)|cM}LS%Y$}HPt%Ygykaf%f5GaC1&-M`s2I-#!!@&a@ z>1aTeK_qxjeB^-p6iN8(>0Mg;!8tXI@o|S>{va5{S-(ooZikXij5yjVr@fIHCU1V> z$SiyH(1fp?gi*J+!r}(|jY7ftt$92~hqqwbB5s!>e>nDvmmNhM-?YImK4RlHJ|f{e zAMtoO^8)lcAF-Hf(GJ=XgAdeseNbs;nM*xX3+xLg?9hQaZ||Cz+}tS8IG6wUa7vDu ztw{aaCdDdQf1M8juZ?-O{{gse*Hc$rvwsj0VFIHUe2;B_M-gQM{^M^nCJ3}xz6Iau z$Jb%rz+f-?7qKPYcz+9o&%$IbxLscBM~{~4UMS>F94%nc2w#nlz^BJw*wIiwar;`O zxGoJ3!l9^df2sTYZL)dkn1I^{zG8^x)OchYdYJAc%c$GRU6OJ3 zeY7V<9tHFG5~W}|YJw2@w>D=fA*`3(xb6u_CrLPJGsbgSj%rdr?> z7pd=q0zgbnEr^E~eMh@Ax4fWXOVvYMYIR#i5y|eXd22&Z!1;Zs^m}Pv!g&q*J|?5u zCJCm0`#bb8UB&SPchkIYiAJ{R+ z;wXEFR|?KIv9mcDrZyNaUmRb`72Dd4zg0HP3y?^6!GIx@()5!YyDtScvc~ZOp^nPp zk!1r*Y51(zE;qt^7v|^#%3k7X&7eg$TI-G-pONMX!ljW zuiJW}t`^@U3{v!jLCO!pl7Gp5^^N4IlGSj!$bvk{yy!v%0QpzKfr09w6l3JuzfV!wFDydi`@XpE7_%Er@vOP};hv3@SoCDl#V z>}v0sHZ2?Hv?4mh;5a=&{%_Cy6V@<`wsG=MuPc{36d&TEW8wGLQfS?k zq}D7%@Y`~2fqe5@Y*(R4pg3K?6QN~-YvHV%m7Gl{-GTml)WHk&*K2KeTy$vo?v>2I zro3A9)%^B8%U$S z^#Np*1wN6@rR3517b+?`!?dTb$9nSi?OX@uZk|~D7IgMV%$?^<4jn$7@<1+-wD}5* z2&ub4YH<#g_hXqBUN#opDK04ln#}h0>5~x-tm(#FFW;_5>1s5kTjmnNmhx>C3Vt-0 z|MVl&l&=4eeuVNP1`zrf>3u@dRZ{Mw60a&Ut*-`3x#^&EZI_YMQ zchY4=Pfx#`pI>=B@R>c?>ikly)0yznaWoRXokvs!PO-o&C;}nv?P!LeoJRF4xp!ST zd5@d4#nrty9eH>gNIQojJUA1J+Ya%|9&7_?%mWMrF-=4eL66`x{Ni(C^I0HFuGF=$ zre@b?nga3Osw{D^F2VVQ5y033_2i5$bQ<&2|lM4&N{rR!jWUc|^KPa=F6)`WH07 z3wPPVBs$=b;dI3WTtiD^f3{paM_tb{XPzD_E8OJNZ<#t{+ox+k@C8=l( zge?@**Ft`muvYJWG=XYI7!-iF&gWB7RTe|9SO~M7lVKItAiub1oLO=xY3L;(A?^o7 z?7fS54wWV$hv~=o3EZ&6A+3Fs*&6ewUXVcoY2U6nc*c-C3_HgHxEex75+nUklh9it zz(OIZS=0mUcW1<&>MfqMAqyA4`J;Yj6}w=KKJz}uY%QeK!Ch5D6)W>-uNV#a*VTDz zaGyxeGo6wY%w!vQXMYD1?x4t!?xpGpmP8IbiczD-;&Jm9zYG$TzZoRX%%V0($6Fmf zjoAr^3R}g{9dL<1W0-ShLhgDGAjGz7~)hgMF0`2xti`%^#r#%QCNu&!jck- zEqANY7=B&B5iulv^_rJg`4YgZaO!2{ns5^5E5;*}W41Rcd~#uP^+^d;78H;`5hst2 z{MXN2Xv<=w*g8B^qWY19AoJOK?VP#3GeLh5m>@6-i0)mxagvgu?UDIiQ~+6U*Y=J+ z;=6APy1Bb~36JfjT+o0!w*Ne?U(X$(gWTam!JMLg@j?ZGt|`GuCso<}ExgvQrN;SB zF&1~@3Su3HE~MIF_6Q#^k5hS1P>La|1Sth`i>Pi`SJsq=Es|CwEAdCFVNs%i$LZ)E z;rbAs`VIz!ca9Ofb0@*dgGNEU;V-*2{tFPp5jNMcy>`EFc7=q9Y`x^vQ3EaT>h^8| zDYYNDp&d!^Uk48!Jfbb~JQ=ho0WIls+s$)!KuG*xd;L^xRd9Ojy!a$62CASf}t zRijcj+rk^l&)5Kl}$E>4RM*=IZqiE!0hHWDHFMfDq$&; zta)*r`!kn`YBJah#;w=;gA9>@&{G}oKS@pCn3@<)Nx7l)f^tNjY#XMNn7^x^qoAMO zDnh7@9^LQvRKAVF0#oRR#dx> z@Ga4U73E{x2*r{}T`~SnUFDh$kCzs4HAf8uJ0C0f#axNSO7SaBrQtsnj;;~Alu>!L z5Bjdu?2#v#g{R*?Tna~)-QlZcmCdxnCbXW zyvU4jG~YZ2X(Fy**ScWH?uImG$RPtr#G6F~b^sZ1J(+JC$`*uyoIRT#iUpRD>CrvN zWNI_jJ+oZ*T)dV=UgmU)897Ij@kWD>(EXh$DbreS!)sXDtgMdC@WY8QIbDjm7(2{n z+i@LR|9qG(Boy#IF1P-C_V?gw=KnBp{E4=@8WO7b2^!u-JST}pM7 z?hahDG+IaX+`6M_H-nBo7sB)QZOhda4ciB|r@v&duVmmq<)ShPipUTW&0pPiki1yTtN~VCS%wyts_1Dgw{=UHEIBDrr$`YBQQ7 zAk)+&H*L`41m}qrgyCAwf3J^+zrI6BX`PIc`?{NNf&Bd5g2!N2x_lvd(R1$0^P?>H zR3siZ-jgv-kaJ>vx2Bi?Udi2cLZ>keq;wLGXCsBMD_%PTtqvSS_A3$%10}cpc8XVd zxjK)IA9^?cQ&R9plPetK{FQ3)-At3#a;;>n5`H@j<2j%RmONFqbd~{s7T8OS7$8*3 zKP@PXK+-$?WAz3a%%<1W@4`cEA>e}1z6-~B_u&KaTd8clNo%MY%d<3>IA6>pNjWx2I<05> zCq$BC7ZKZK9rBRvwycp|4rV0H#C8$%F)J4Ps%sh&qP7jg_9vqKxRl5VBE$QgkG=GQ zd;Fn;uN!rvA4Gbon0M}1y>pC}x5+G15QSRSJJ}Z$Q2Gj`OYpJ)|72#I9?uEWF#7DB z1&xnY%W`t%)`EgPJx5;k#MRkXhnr!PGM1ci-5j4H5=9E0ju>AL9XYR4QBwNmo`X6^ z1sLAq2Gzfy9WDVv&cX%z-4kM<%cGnv1_rsWUwv+WC-)mNY`@q{>Gu+a;dqUmjnCqV zRpKgG>U#<&9|6pZmdMC$bFO>fw?<$;TTGh@)1us5oz9>k^*F_h`|07oy zO=qH<5*Y3<gz5rXy!roW3$VB0%IPwAbb?}yE8}a-* zFO29xA5WSYHO!}HR~IkAJtK_Xl8%!jdWWqed$m%l#4>vJEMy@9oOd z!4Pkz&^tg(zbsYN7{#Us%y##4Z$&C)sZ_pIxp2fFS7}?ftfVHdRVwrbPvK~5Sb|rf zl6klOo@1rvpay)aA7-{{-2XaVdpv0>@73|jfV`2|VJS1<^fzDC0nL*wdeLLtNccg5%Lqt>Kf7BM|n@B=k>}d72^@F9>Yu{ zRQXB8mwg=~Pj6mvEJKUl=>Zk94WM_LR1vj{)Oi$WHF7D?hHFijr$gUZY=TB%oY?(#<@jd@L zkLHDf?hhDd&!+tS)#(Lq&^kaTKZAlnjD470a`jSPurZ$Ln2CRA9%FC>UABmn$gs`bfKBYeI9{d6C@&yf|&K$ zj_%$(J^jb=n!o6@w(oQrwCr~}ZR~Bt6)6k=OlaA&2orFI;2%yEt$Prba> zZlGG6%%T;qe})3R@F6F~9vC0LMVr^)D!!W*{v3r;y1V^$GHifPP9uT->JxiUX>eS< zzVkhf#kFUqJFmSCy^-uh|3zyU)`|K2L73P*%*@Vo^!8rkFMk@Y6T0VWq1f*fF}3DL zVGPU5>y^)`<(3xE=&qjCy#lRl(-GNu{&Nz|LM; zSY0i!dci}?C0{$zI9la)xeiXQBV9!s(;~3(S*tEzicG}~OAB}JB)04hVX38^T<70E zG@3a9va6z_y(*ZreB$*^v10ujhV+vhmG9K@7!j~t|Azk~iT3Qyfqx;<>ItW6`t<)T z5-oyC`P4OD?l^agp1Uetit&cz9IVO~Yk)*+Rnl*rAy{M1f4j;hTP-JNB^F$QD?Th+ z=I@7YHhUvffUAFIx8100CM|xs=(uQh7T?=RD}GT?HfOEcy1OtrH>$6}ID$+S3i9Qb zw^9&=bt179tcmjWmhk>jOqE!PSlDzsmubnsoYuI$& zZ&NMAgZBY$nLg69pWVP_$c@dXRk-2*3+n9VwUz3tW|H&stKA5XjVdBqRYb0i|KO8z zOeugp=(#zkdDWEoxr|#9xxi*qd?Iy`zf7s)JJ?7tzJ_-a+>kGwLjS`%^RoVCW#0J@ z%2#gaa|TQqRi8mJ&HNSvfhNr)$li5S_J(S0GRb>xgpv9#H;K8=o3ASp#kV$}T$N8_ zW|TnAKZArSlCdZ>0(uPJ1H<+JW^`H9XG@#_c!(gk%l+TZ!k`MTaAPkh`R_gAB>=%} z@w_nfO>0%g);4ubkBp=-Zoae2Usxy`^WGV$Kt4Cn_f#k{RR5sPs;wsS5NG<7jIrYj z33A!CjEl7Y;<^dI-+f(V=Hp5MHbxpk&b(VD-ba%u?V>)Cv}ejwfmVWz2Wj{c-%Ef9 zGdNfW1>FP@2YagGwBrcOa0PC&uNk|2xU6mn+tacm!KMWOwNFier+?mqDpXc&QwetR^`oYw<)>#wHv>%2m)+n0PHbO58MjW zG<-a#zdn3>%)$%nwb9V|^sn_6=&7Y2NfO0qa%Mw5Q7Yv$Z+rVsML63-!NM-QD9rAc0-Klktut@(WYQ)z`~cF!{(@TL6wG3z zj%~qDu->0*?{KohpoP&HFI0x2ek48H4w8Jan{ymzt!hhaimg1V zJyfo)WJT?AbXX0gMpRk#MV&`aC*0|LEYRWXaKXPp9*<2$0Im(R54B+_&uX3Rl#I^C z-V$??4bf_C+d#782@YjyO$+U+0mU7k>3}WjkqR9PounUv4 zC$qvt0erl$Zay0S%mh32DR4^fk|z<8Zy}m}c=Srru8b(C2hS1AK5u~8M`AdtoQF$L z<#kHrYRi6g#_k7l^4F5k(+w}mFl2n~8VDgj@h6?sc4!E5Tu+b2%QodpF(;N^Mc^zUWQZ&NL9(^a7u%#JTZY-dPh-;5wphVRhGW@u`WV62Itg$7S_ z20r(k>6>%O77Sd7CcX#yIlBDELx=mU?{RB1+1n_Z7jGnZt>f2M8Hi&RcvUJt8EK@@ zNnERvdU}xNT>HX4ZmrVd(le*c4lTv7p@*EmtjZnI#5Zl~vndn%3s%CR5rnr7CZ_D& zrOl>UdC%%;x!-APRAy1ua=$VD$jsZOvmoo8lfb)M=S(G%hb^;4`A`OKdg|vu$$L^9 z4X%|>pd|A`2h|~`gq{W(Nt8Q(J!wFI0CYmJ8FFb@+AqZ`9TJL~*!sb6;ZyN#@Mw6V zBW}0a?CyjN<;7X_0Fp0E3iFsaaGmGH_s(2`u10yz^w{9mLSkr*y1ywtA)vrc+Bjez zQWOC0yYQFvpBTi%4LI+liSfN6m))*g9<~;H_go5CK|@yPyBVw*&G(40{XM>wr8kiS z`<)LthfBCTTb`Vp`5c|w58f_Xms6L&bRusXDECP)B)l#z<{lV4|6+z)QGe<4#g)H3 zT=45l`M-A}UX$3Kc|zec(A9mGKVzrcU3z&EI~ge7yyQAaD1oT0qw?2obUX66W#w^S zNGwRPIfb2PCUYv)GdFm*j$&EmptNBPuV3N zDBC!FXxFVf%_VYKJVxN0idxG>QPTWah$b3?nF5O^o=kf zaAFrJ)=Hxi?Jf9>*$@O%l0vi33NR&+Pl|mD=39;taB}n>Wvrfjg$NI)c`S`RocWUw zyZax67^aElicq?3Q>_~)hSm};Lqoa={DK#)<(e}l%_H5+{&C@edi}xgl8%r~wJa3s znTc0Z?-I`J<9vhd^KVc+Pdf_wxphLT@!)H?mxB%Z#>B>MjB=*V+a%u3^GUp_=iAz@ z_VkPx7nUiD4`~ka&R;oW(YT1fuWIcb*d_07DjM3j_(cLjoe`}0e&xFUxeqb?Ub3=h zSy#6cON!aiZo;Oq{C5NBV)$1-Em9GZjg;sK7cXs?rjJER*dpthQI$kRz!6@W)ubp0 z2d#?xy_UwLSf>8#6YppJXnEpAkmBZCggf`riX8yIna1xYqwNIA$mIf?xb7vB zQ8g(tHgVNuG%PW8EI9&MK@2vX_N}l*L?*rjwj-FB)p5_9^0|4+hR$Wq6^~gGS?`GE z4Y>b}qr-{mh5c_;phgOQ@0j{G<9c_Kj2uOstCh zDaKaNXzV5RfK#0SM2sfX&;*T5P(!n{Aeo5|nbZ9IEc)l^#|C9(8;c=2muoxE#VYsH z`;xK%xpv)aGJcy`RIWKC+gQ9bgqHcbXw9LNST_P2Mj%^uv2SMKUqCL+9-k>l_D~H= zePd6c`ty;iB3Cc{CIgA%Lm2d;k)194T(M|hPVU5y0|T~C-aqWU#UR!d%++$yo+&0Y zT|bQ`?Z4Tu-{Zo5v0+6&*)Uea99F=F$$<{%=h^)&B&`1WTiLR#tOwRG$k^41-Dk3{P;exC4U@~+&@r-8n1n@^4q~QU=j}u{l1VaMcBcE}AARAe z)UHB?Q~U}f6p;EmMMc*Q1cw<;bta2l&_UB|c=Mlne!4wy^5eZ(S^7b>$pmBH9W(e5 zG;*s+B=1HR!_V&ht$~-uWwa-CBz`3ktJn+O9(;X~jP1vh^^*!y&n#CQGWxupM;{TJ zo-Dx{u=~Sa#idN&2|~=&GavhjE@r)x{&)v|y&1HL*{^Yi3usrQ7;o}PzayOrD$EO< zRKGc_(ldHU2)D|BY9&1g?4Vh&oX@*B_cgI+=&+N6R+2#xp^t}(77Z-^IaFZqT@NEh2-MHk-0c8 zsDfjBZbZ@obL}NxzBg{Ao}e0j9;oa8ol)5lL55%7+I9VQZ=3BJe5^sXTr!ZTzhR3f zboQU5oA^M>_zZ=r2w1gLH^0I6O1+cQFPP_oQl(Y|t(_t zg&mjsdejW#D)+YE##xEKJ4!WTY_9h*Y2sx$aa_9bT{ACo%R63nRH)iCgM)H;9* zX6DoKq0Df}*G7zn_1WtIzP;(In!)fb?$2uYH+2WbY*X#47xTkmo{%<}p+pW)O9u%{ z&5<;sWJI?f$k+{M*b@unyVsXiRo~@ZFa?j9^|`($>yCX^5=ke72UOiV?#NF*$m%x*(m(XBJz6;%bad<1#G(A^|5Dr()jVc#YJYLhyo1YC8a zS0*fcpP%odp(|244k0TEE%#%)f!|&0s&M*xubK4SfG^t$FifH=*lu#D;2;2f^bJzX zHHHB@Sfwjb9mlq|(HxVDK3sn6`z~(=JDg}r9)x@ zcY6fT;ue#y2*GP;xj{^$v*BG&$U+8)R~ugp0N{p7V3+XhBQhv4U2QL&qJWIQ0K8hw zq!iR?VGPbx{v$`^36+q*cm3^481Zg3vCzMsg)s1&*in-m&i|p%5sFCO!9=#>zY7qn!rRxjTL^KgpG{M(YRJ8G+u@G+0{;*!a%8ja6^>L0j>)I?YpGhyFJ>z)QFir3=Rot zMP$x<>j!)9M*hfuIx`l8^ePtS3>n+j>8UGw+M`>y@tVs$2gZmfu9~W z35Cqb5eP0&)3@e9*8ymeo?X{NU4UI4+1V(Jo>sLZMini>uiQA&^po=129#HN@FCMH zT;u#)94a}X-$Yrb!^1N`92;Lq32tekTbls>mK4|Az0*W0`+y@j48=FwnL^O6VF$N1 z${gp(fwN%`G<-l-QZx2H&048Zh-Ho6xJK~3KSWibeEsO}A5VMM!GN;-((G&EN3|D( zRMpSq|1!tz>1s(*KM|IVL3xrk4>Qp6m)8< zhn4Y@1_oaV-~|-ye$mX2yD4s&tZsLow4$paLhjbQC>x9UiP`miJl0v5RIg>V-rs8- z?E1+OVYcd!_$o10+Fnx1@n}7Pk-Lx0^XtcOkG8K0iVL4Ptq8khe&Phr9GME?Su2kV z485d#l7-=QnuWOUC-D+N!OSZzkIY=>~&|Cq~@g>NF z0vxe`Z-nov9l77R?K*n#Xdp|}bw|}yF=G~SkDEj_A{x2-c_z&dFqk&D$luwq*;T)$ ztld=a#STmZaCCoXxxDp)C%>~?#SK!K8s_9&+)u(8j755KHa9m4Le5>4{VciwxBnJ# z8{2TKr0xC7rNd;d23`lWD@HziD7Q8P@$r|P8GDEsW(GM?#$LET$Sb0UtmFCAwL+_r z&hCkq^nP;vIF@FjSL-_n;-`#!GxDJ}d$08%SjU`&ot@(_CqF(DK0tWVh+lB^#vB0r z6^gy>PI2gTobE7d?sLO$MLWD-B*Kegl_N0?1qC)@9A?T!XQN+*%a!Y0=DdJ^(O@4J zuhDH`W@uWZ4iU4#w~esw?HWll6(bMu~$*8t#zN+iUZ2KLG8d82W+y`nH960UZI@8&U>d0=;9^$psp z`MRLU+1U8qIA@g{O;HZ9-1}DxPFrqHmxsjzy{ML6j#9gvon1rFUkWF0?~z+jPz3pb z>4lKm#-Bg@FR5)S{YMm}jT1thAx4agD~S|>)DM6s@CdpKR;YZc?1`=XPxsgW`?F*0 zk_O`L#r@G8+G)UjB3A`)XL^29e*xCcrjeUmVfN|_v6h`^3 zp{r@-(T53!Z}gG^*tutB%$6&K-a1$-D+A|PPFOGX-&5Bf69RiTJK+Chs{Te?{rcs5 ziEGmHEEJZkS$E?lZ)0cs7`-G(5O zTb&Za!{)JJ+Q$jMLYlg>OLspw)5vT;XebV|(qG)#lhgoppO3f2)>_BC;{z=$OLkfR z*PgQ1p5xz|E$P#^t_AOV{|0!%ouX;z z$47l#zg%S{KV4;WY%Q}8>L%|yS~+2=%uI{|j)Elw>fot)`0Bu0sL!u7R&iDnXC`V-$Bq#V2;CLiyc>07r)^a zcW_I&_$l*Ht>#!2absrPd#SFjrc*lW4oli)XPeK(7g$y7h9oG)m#&wXT8+Nm9VT#J z!~<#tIEHv&-m!xL@fsw7$u~7OMjY5k%`|<3*N;+|>)3a)+k+NQ1>B`?|7jrOy}oB4 zdnNk%SgXD@O>BhE6M=b#80iH4JA7;1neXXSA_W@utI7p*&zKriL`By`br1|>w{;h)A;i%U0N098v&LiD*g@i!3wS}QYeL@|i zQ$B?bql!~{VRGllevbf$Oyzhv8 zLyT0jyt<~!#1|N*!f0}-w$^N=->>f68ITai{+yGSTz0icFWi=9ZDYuB=F9fMnbqhX z3<;qDiMnuhj)ZL6(>tG(MM#n)1pAl8lAoZouG=O^Vtw%bW!fj2kYtq82eRgLQrh%! zGQ~dpd@9aD84~sbw#O%;JasOQucgwm-GYDp=ucnzHkKgmjcETKEjMk-b-q?zHEzaJ z<#XltXgQivKmGvQNC6j+4{HTwIg#cvbR`F{T$hcvU7fG8_R@t+gFNm6GLQe+A$AYI z^?!TI5PHa#9S(wA*xSL!SG5p$pmx_?dw>Z8i9 z^Bzkldum;Y+<z;4z!eYy3fepnr&y;>uO= zW62<-(VfRjGi0UQqd*^UCVR6Awpmn=w|w}Jy`-0QQ~NNhq(;Z6jn6EKdJ2-~MGD}F z(F-z12KKHA$P=W^4XfH+z#nbFuHb=!p zAMr&31a3&RG;)LjWP`du@OrXq$`zsz`34#$kC&<^U*x6xTYW4Wu3czq%{>koa ziHgK{I`dmPaI4b&K-J8akB0EhwV6~omoq)q1B-H_$GwrYTaWfD| zsuvjb%kwLkB~csq(~om;A*k99#4x&dzlYK3vOLq;{_s@swkAve>epw@mo@coy1j@8 z05z|M3Wuz2hI)BVW$pJ&cJ_=trUN8+QMi5Rc`@2fB9kS?yi~uILPy4Ac#m`Kbc&Pb z#}aCxxgmLvu`QlZ+fvW{k)dkp>-cTN?(OXgvDq$!<=L}@aY-MJrCys$3scAzQ~Zcn zT~)IlT|2GTVlK5j14G{1K6I8jHGK}y!qQoLP=p^@@X7h0!%5+(YmXjY^dL)9;&Va` z*Nw!;Qcd(6JlKCP^mNjvmp2v;Vk@bqky&I%#rt|lYyX3&+FbSt{oWFS$fm}HG-9jQ z>xv;>9)Nv*&~y~#vCy{XeMcJ>I)o}3fYmvMfmA$i8%=RcAbW3;LH%B#k>SeLbQi{h+vsnt`?E z&FyH|H%bkj+shF$dQS8wlwCHWzRW#~uk@5vxAAx4X1^Ji5@FdI=VX1cAA|HcO!8W(x6 znHy@##)Jv8G+iAa;CY>2qzC=`MtB zR50)?O$DJ77lj$Gl`#-o@z{j;4G%op3%=0@13s?Gatx>A123YFtAK8nu7EBp_PdYE zy^lTFiQwZRSh)7i?a!q&l=)9aUi^J2O$ymil%5>0EPpojpUB(ua83Np!=>Un3z(?} z-Y!LVyVd%rzyQg1_ZB1I>hhG@8jEmW%Xc)pk6~5>FB<6g2w9K~AASF3;Y$2pvv5Ti zQN%5(pH)&fqyHp!M$Y(+l!*Dsy1eZ!4?NkCW`*m)NcuK;Q+Qa^>Bs7L@5*9L9BG<} zv%Fxo;7YIWP)-WXJ(0g89TqBSJ4Uc9kVKBH-*nT;B26W3b^U0X;}S?8_nEb7{)T}i(x#IQfl7|8b|=^NfN9E z%cJP))(#UsVxA`5Pri^ozi*&jHFY&(kA)ihFBVE+=sOE#^S{eNjnJ1f^vzR^1#j%y z-EUoDVAj(?K^sMSGS)&~OCkr%+ibun3@E5=NUNLi$T;w1iTrr4evwdt^8X;AfO*x4 zxGu;R=Lf=*HKESieLHYH=nU~f!C@dY&f(`HCBBW_Fc$=Eb+6)$1y?9bY`G}2wMB_` zPQprxjYh=obFY+e%SOsaeEF_*^BR%QrerifqndUJ>uiXPLxY;+=~*3D3L~>)F^6AW zh#lCl2kL4KF0<7fJoBvG#Kc549L<{=Ye1lxh?D7m8m>B6T}g;RP9V3FW3OxO@ClOH z$0rK<=0}e(30<8e_ABicL$6$mHlLD`P#Z}x1 z=j=4TddDSC@450fDWf)#F{)&Q%nWaSx5%>vg#Asw9|+#XivyKPFmdg)fbO~0n-JTA zyaplA>nHQ0YKeDas(JII#fxFQoiIomPY=s8iG8>bL5q;FwGGqK))nx=)&>k2+)2s0 zodUh5zdc~N*Gr=Z8~cseqOZjRk9UwB1acT`lJSf+pHWdOFqchu-l(XHMqoD%-p7OZ zK7ghDZAH$$Od|*|=zk=x$l<27b9a*eVC#)RTA z?dXHscNaqLO3`!GGw}0y?3248wS*k)z94I$^lWwg~ zw^YiC?+fT1DY!W;R&w8aJ$G~OA`v@qj0#tK1lTsW=bZA$`G<4r&4M#wc|w#MA-06L z=?|px$E~bjN}ZPL+f;LI3jfF!_VW3OAKV*T9ib75u{gE1mmNgo5qwN&OAk`LL-BT( z85lH}fjeq86<+sSE(v_65W)UJd{3iJtD>UKyaVi4t+jhtK|B&Z6aU#E$HXk-byAGL z`~BC02bTOuEpBcqiW$|yK~nNB=Twj4$!NmLv>&KXHO;+XlyvRQ{DM~3kwammDf3^4 zW~%JQSiM1n5aU=fDJ*Z)S-Kg$hv-RXdGxJ~(99)CEv)8lA{IVf%|IA{*++kG_K5*e zB}m)AFNm7O0I$7wKI{_T-9o(-rVV`Fz4H}Gx^o4F>X4Qqa=h5H@pg6Q%Gw+gWG zg>{SQ-EUsr<0OqLoMer%X1JL=YQbEkj5`8)mqyIojj*GXP5DarR7Y_mxGuV|b}RN* zX9hBxJU3b*H%#YeI=GISSXte~UA(rrc6WU;wdUmylud1SC9+J$g1ifvu#vBqG_(4i z)+BedvNO;^citbu*h4eHr~NT5^YF<2Z-8h8{&-leqt9vhHi+~Dt{Jv#hzCeqS@9Q2 z)wQ)$oC!9JQ|awiYe`qXW~-^?*A&D>#;C(7!TZ@I&rbVued1>^PnQ%B5PFk(7&OUU zJUsb;TOzL2uuq7dKHeyBivF{Nk*8;%nCnK~MPRjVZmK9uRt9FL?@z_Q?49`A8j4@P zR6R<3QjFi|5i#0-`$)=Eqr#USOlY_il8n<2RdaPN1PgscJB-6ptpFmI+Vm$PcQ#`M z?Y?(@wlJal!;>H?uvvw#ed$cTYh*Z$*no}vPcn%fkV#QsnUPlm5sG{J(=EkCo^^!a zmg3rTOP#e>OXlT{r~2Xt`K0H|DW(k`vH$M{2PxX zYfjGjokw~>*4>0wet>ZI_ugs zh=PS`qYDloDoPO)qy=;aq)1gkkuF`DG!;ldP*kd-^rkeC-g`$-dPiy~(o1L|KuB`- zFM#6Ayzlp&>zse)a-8u}v$OYJd#&er?#9N|9M2h{gzZs`+PS*TtzEAZb^-=+_Vv-K z!Mde{+idZ_W z1g9Sb;e^Wb{T9e4PkI3A>j>nSf=~W%#8OVp%mi5&*spezRVVu!{QaH z0VYQ_Mi~mOy-|cE4`hmj_2VeFeyh0N6^fmlK`d-TZkDsEUFv;Tmc!x7Bu_g9ryh#Y zg1fhDn5OH|;eC$=U+t$j7Iflu_O>Z%ce(#BOi|u}+ZltsrFLEtN`i~>wPw;|T6Haa zyidl_*AL?bjdGu~i)OSE9XN6)uW@g~TKHEq#F z!vP%+Lv%d>DkjM5amI~fvAA$PoR)Kh@xQ!wkcV+%*3ojSXzUEo1Xx`}RSh6ow!)Fw z$R^WC6c*SFbWqWz=r0?L{eBP0=U4oTaHlYn!62@1G8(ngfWbIh>UD}H+~PqyQzpIx z!`Oct4Tay@9t{bDr2C^lJ1)lSUXx=L%%}T4)!{p8PlKmW3kW1@^+dZ_Jq6$e)=Z6q z?KTemzBQ_Va-%qq7~>}@IXEu-Jd5~YLa{$1yNQDDcuuH8e4c3rCq^!F=Ha6nZy#Yl zFhmKEU=&!$$4*ac>Rn0XN+NSz4L+Z20fs|hF7zif7s_PPFU*aP|10oYr))iWZ$6^D z&~f}T!%1?EE-bI~Q8b#y-?!mTX07)q7wcUX$m?)`)S&xgu9IN}~bt zk@XGrg=h$fxztrxieCokw=&O$PG1X)p7ujZ$1t;)t`7K8A)#zNo}kis$Yzyc0CzCn(~c5>$T%8s0>M z;Z5Do;SDVq-f$9!H@C39AJ4u5(}G`tfMBe*IDB62%NBt2?r^967`BThT=Q*XXr!!k z665b9izP>*B4OOlGwsyRJgXfCE7IvtqYm3|=D)4PU;Vud}ILR!fq+Ea_k`2{Tno%6TY|l^|JU zza0(ONB!e0n#kx`DuuJ?eL^O!*jkZRDTexc5SW9K|0(P-mT-LmX6eblyx|ICkh6DsO`dnmS`RlWOFWe$>O$FT;aft zFDT2F+sq1#N|77;Lk2mCMkQ&tP*q@5dRN)27GZZo4PE3J2q>~&{@thaiHuJrB{Lj^ z3vl?=v~xTAo;&Uh7^}RyRdMdVJH%f9PY93FBOCQeifsr_G|X9ssqS2I;!0%B!;Z>k zCk`POv&D946ub6);xJ}QN*PW&!5{@Es*g4RC=R~V>~``B0gXo&BY=QgwW|8)4bTHK z*6FKZsI~(-osF+wRr(s|W`jT^ZKpZ;L+ZAT!uFM9J-CqTAhB;^FoWZ{>|S<4OxlSQ!<(NX$Hx zc!`PQ#@XvjORDMRC};d{QHl<@d|e;hPgw=~&da z#PZhVb>Njju3)-mamP}3205d@EswR&oDhzKEJ5vTFPAIPeU!zhelE4|t}01lK<@f| z|D@aIXM{x`81o`;mrFzH+@{@;WSd`kwK>i$qOgE{ob&*e&0~?61P$8Idq*#k`~A^ zt{=;j_CF=s1OpE>ZyKi7n2xO;Y!3>58;BAPwd@RI=8eu-l&Uq`++hfGe6*d`M@}|x z>QmVt=c5xDD$wucHNQG6xyhq;Q78zZp&@k5wM`QrN$N@*#CVDJGqysQpEK8QMma%Q zeQpb)0kQ2ARO__)vvs6rI3}N^9w@rXohF+XI&uJVPC!|Gzt#q_8tpy9hTK7T8A)1s zAf}~2w>*6ajL}L73)~dIP-+sH+Pd@H^#1Mm!p(kHDsEIhANk&?-+`MZXk9-curgCW zyF?`bGnl2lTz8Stv*W9Iu5rD>^FOzzG4R;4@_&E^3t-fa9o=izK@$WIp zcoO~Jp7kD;`kGAdy}i9(pb;K=DGUq@{Mp&rYede^T=C>k9+eJLK8shg1LXAA_i6BXbpOqzy8(~9=)T{? zN}RE^S*oQfz9ZS;hMhW6=$^Yw^UikWm9a{?3e-=rI*fkvMzyzCDJka<^cD3lLsn8d zQy4eszyd^|0v!Ud^PZbSVk8h<*lAZ3k{F@^(q`6Y#&i(ifU!kY(1`MTJ|XyE!9_fH z^oBmF9BXulvlL-v!UIjmAZyWY*KTnECg5RLWs*mz%AGH@m040E9&u{PkD3`@y|+v6 z4yLTqhbAuUH$HApTy}5XTax+dj$7*jV$Ug0UGll`>_n1_9T>Ri{gC#WYdm=vWlHYw3#UZ1F5YHO7;?x!=^b_H>} z;FHLFbOBJ6X~c0w7o}T{)c~1BK*Zs?P{=gfCs^O+>sfP996Y*uD(j@0uf*pn)U&92 zW}lJdU^jb-Vr0#o9rfyhLiFlk_U09}ZjurbTty|F*Uj3}`il0AU7b#fUD=M#Q^MW# zvW=vRV_=w)@>2t38vo7BZEMhlzgvUKCexq70Cn6sgJ+iLw*uLQJ-TJ(x&va1;aB-- ztuQ#jg&s(2SUZU?hUPFJ_3-khe--Hqo8oe0WeBX?1+5ArxJ2txNFd6SDX0~E1R#B8 zP*FwPYaAnHbinlNx1$2C92p89&cC>cwMVkF`UFA!q^j*8(@9nITSAli&WWHVx z@^~!H8zs5K-)pM(KFlYyVrREz^m_Wi%j8@22`Xp9b|XyU0Eie&zjy%RiiGBgXlFPh z`;<_k2kYaZ6$3XiQYtOUnm|9Ar+Mz=0@xcgEXXfQ+ZLWz-jX67r>(562W&orH!89{j(2F$hG-A7DHO&CKsPthG&cy zr(^k6C$GE%RGaS%t-(PvSf&ruA9!u+sIy#M27pt%%aL6+2>?`NU2(a$2EPvaynkpU{30LPt)Y5-8RGJeC0kO z5fyD)4%fv!V;FN?D6f-TI@fEiB!)mje&$C{o)U8Ocvc$};A=;aYt94Fx@DW6KpUck z4~az0RBjJVVA}SY(9k4sXK3P=LD!ynTt)w>ybm{HU|Q;#dxUUn*X!mgpeyp@|H0Yw zm1Ni1b3Sqzoph^>!r%J^O#!N4nub*}tC9o++8HUjI{Fzewm+AK-USr00n&+k7a~Zi zD#W`|_~N+LeWn41C+SViedo#qNQ!YjN|oyh;vAfJX$T4SZW~k94{AtQ&k{QG8N$Nb z8r^(JaZtLQZi<+J3PMF=Pr98!tMUGGtY1}U05eNfmypL=Jok{dDI_%PO6*v>ZH62a za0gwk+a>Hx$iV{zK7vqIbTA5qSsIIeN1c&1R~QM>Fv7KqF*!bj;VS2e)|!!^C9MxM z&BLUTWr$kbrYpJ;BvKMwLCUGqMSmnn$df?mf^^=t8SfRrE4ty**a&Bv?8pCDqk#nv zW1GhnjrXJ9#CGeSi@BZY{4V%#mXRW|HQ?LV=@w+f`-@loAJ+4dy^}YYza%BsO|~>ATZDLtF$sHF$5sbdz}Bb- zc@F>HB{Oy_!S>BQm0-7=O|P9G$- z`~)r)v2%`r&S?6kSIV&)xoU!?8xcuC^~UjJPm(&RM&0i=6*MN<`)0#CAZ~K zh(>r;UhQ9|ASBn1&~!ybE#%@@+$ehcO@!ZQ!~3O$t4iu|24|t8M!^EkUFtUi?LJnqhI-4Gn)1G3@%AYt0oDhD#7&XJVw6F3 zgg6fJ&$i$ojdf!t7LMPLEO$YacZ@mrL|hH&^)zxbZy3*Y9hAr)dSY#vsMg4Nt6XW4 ze{>YY>w|%Z#_ns5=&D&iCC4ue% zKN&?vkHX(cB;cA~y9c8eO=>j7-!+6@oqnkql=X5X805(ry%kw(QYtCHR_|QN4^l9-;(f4`KxrF_qrx;eCgSZ%(OU?+l6XkjK>(xL; zvG#P&`x=ZiW@uijv0*kr*TLJF0^aIQT7Xv?f{np(Wt*ezAA4|^^=~aXJ70KLkSYCV za(Os4f9o_+FKArf*!pE^mRKPGBd zUN?A9t;*FEx18Uumfsm|=5svWkJ^v-;tdn|E8%q2g$#Kn-6kq8<=I#&>xm(8cIo$F zf)x*b+~@C>%4bRBob)Pv&Zq;@_Ad-IfusniFEoP#ylrc9<33`PhYQ*^9r|_`I1N*< zGC;$QZ5bY>0jg&y`G5Qsf3mJi^axi>h8wc5nHgBH$Y%eN@eDFL-sJqOmg z1?Gb*PA?~`9RoyWAnbwY8kimY2yY<1*__C8cG?}p!YOLc3?nk=(zk;*BEEm8AZtI1 z3Vc-i6r=LC+3nX5qgsyn4j6|UK*294$|;5x_owmqwBMtOPDhG{P0#gCl-N{k4=`G_ zDIVQ=YEt1piykBKc)_UsEW5aX%a8csLn_9fg;cRe`Dx5`V5Qm9b0R*a-#*2a0mtdF zHGDCcbgbeFp_kf4kShVo-QP;2Tz6Hmz;6|c0ioqrEvg$|tDOr{1T4n8I-2E99=6Ht zgsBLb@6or2fo^@);4|jj76xZ4N9FJ-2wN+KvKt!4E~lFnMbpQ!5q_N5nZ6!;Jn9sk zLiL)?3E!P#JwGbMFznWBFKM6FdWc3SfwiV>Dqi3wM-koVM$Pt+q6D}=rUU8u{Q4<< zXiB)D?vlL*=AMq@vyLg;tP=shl?b~_-~gtz8luJJ4;gLBvXy)pk4sf==-znN#YG5k ziO7ujyfcxJA;$<_YnO$mxpWAKa#GBch&Gz5#ivwx)xiHn;!yhQ* z*gpAMF~1$GRUC|XLq6i>$>4kMKMfm9cfR3`5L%wf-{*T9LnNSS_l7bSlV6RTC3;r$ z4gk+e-N8%$^sJ=M*lkFU1tL7i&<-)-(qT=0$xA#2;z^IUo7br6{Gk*!MPQ_WBGJ1d z=(dU&oDRV<4801^8+p4bQZygD0g~4)H(MxD3?ciAube+hWmY{!^rUQiLO#pXCJ^ja z{jk4G`&v`)VO(S5t&gDNSDwLN?pSUMbBAUGxVodCQuj8ylgGRLj{R6NEk z5()Gd`FVSEV5v1hTVpLLB`8&$Lg}=~v$*0}GWUTCXGL7?$2V`@916AFS1Ijj4M@I-b?$`;|XMfA;J?9WC~aAaf&_ z)0H4K)Zi8mJ>H^V>!b7*J`ZXZomEATyCs#zyM-B@Go)teV_-lHrA^R+8*W(=~C-`;EbJHR!ufoVPrYQ zFW6)9kcIjZ!~*(^lTm&5Cz$9Pu<9wXAZpGu)>jv?KK>pQX8;G6-_MZE!WP7bTGM^T zFNTX*8B*QU_xn7p`t6m9_T-6w7x5!7HEW;nLx9u{S{1MqVh7(&rp*HdK zsc^?So!NmbwF}=vb=`Wk)$aB>HPDfVFp^(tS7wg5C=)EDcAP5-f~LykvwoIvdDuRO zEbm!GhF!bJMdL7h;Pqv42+;FcICJ&eKl~M`ZV;+qCtJ)+g)SkGrKo7e;w$-o?Ai~Q zE_Og&do{Ed4O<>I%zbG@iJD!`pRia>WBEV0E6$DpI?eR+1A=^(20kNK&#C)tJ$P`| z(s<25;ckOMZ&X;i|547evqm;OUteAXPu2UJ@0 z{;XrPwz0V}^YN)`HQZ;4p_S29p5oEF9Xb!L!cntyB3c(u+7GDS{Y1VcbUXwqBR&{W z2(ERAIY?n0^@v9TSP(JbOI6IkQ{~a026bJ*CjEE6WVp5HI2zB2!8o}Ryzjs+XH~Cm z8z+K=o<)6#n65Wgj0eo)=cEw^-J^CA33rk}g%_}~#5N7Zb#NYo-uDaIG+k%7sY9w| z&roGW4e1Cv%}Q&ZpaV=DTE2QR*X=iu{*a_|bA%Y8@_yN)dpvqzMS#_Lo4#sEadkg4 zUdqrFVz0{RP|i?g96^7+WS0k+u`bDQ633+0jv>(VGo*nvDXA`77GH&ZnTd9 zY%}jKtWFivt=8*Ap)u6Tgi^L6gmQx8Q_%8P4Z~Ih%(yW(7>v274Mkf0Y8lFI)=zbX zGG@Cz{;uS|5c|7r0tp)QUisgK96n`(uD$7}GUH2~=C?tdd^hD(8rjwJuB~n~kvg#7 zPv&URice*?OJ;5((r3ZJCxz>m!_tkW0EkX0q7H}CMiM@DwLCvV^(?!xqQWgSGBUTtE(#@7F(iS>v&?7{8H4N(XMz1e zPm_I*{h@rFM2~*n^b8cHccTKx|r74%_MGO``6~X#j~tV+ro=I67i1wHRlPZJ#s|JqMiJVC~zwlVPtmuHap zvDS`mOq|A6{NcdyOT@5hkRv0}1VsJCp`0utr=fm2$Y-2RfBsF`iZllld1-Ds1a?giw#coqZ5z0k*H zsMde`6af$&d0q!(YxSU^ zzfOKX+*4$h#?k2KP1ZI8&I2p^@9*L-gxR~EWMH`;a)MlQ+0-bhEazx;4Jekfk7SCs z6O&MPKgZ5WGXL%Dd&~w`o?mM#`Oj_xsl9H4 zkfon)gYSQH8#u4cy+MRmqeg|ATGvkqR1Ic4Y4H;0ir&ZxC;SA;0ILq!HU;6`BA83b zJT=&F@?+BFgP!kD#i!$xgV;Rl{BZ`4^&FvEfiS~^COMz{%UYxRRq$e$D-5J`?|nvD zc#3)!)v$_vU0brXo3Fp!54wAj=455i+3LQdtaY9{7X3DL0s!*lWydl+!@&RNWn7om zJx>AET%WDK47Mtu^FH9`b8rW3yV>61d809?g7WfNtZvTc#*%iz{j@$V|Dvgki$Qa9 ze1&bN1?@Io#0?yr);yfVFTqtC>$3qRS8-_qKKK*ps&kwdxrbd%R1U%8C9e*MviJnQ z7%J20;Hy%g=j)w*z``;-9;_>Guo&`0!NcS|R|F4LG&0dQr3W>bXr5`2-(5y|@DS zjSUx-6bhMx$%SPWEV8p5U)xa*Tft)0`QgV}4z^jH^MLp*0^%un85zoT_hn_*{x_s| zD5rYTb>DA(l*S zc50_0#QEdfo8m0FTA1YR@AE%z47ZLHRPR9DI1JrbfZYL(*%#E}I){V>Nm{4OBldM) zt!NdA)sGm}VzLn$H5JNkaTSrgw-zXQ5aO!94GgL#ECoa0K~Cp=tyw`J##iO#0uT%V zde(r~2=%PpPH!_;z<}phlRA>afaLj3lbVo%ftu9&zpVRay4+gB++f_#hQp56-`ns~ zqRL=s1t%;66^mk^-xzD%siMoTL(Ty%IqzM=ecKIFS<8x^t(6AYjy(ne&bS$^FW@VS zDFSII#}c4#s~`|oV1=Q^8=?nOZi*K6lDU~s+;EHMaz}VesCm-EJFlPTx=Iyf-4_xm zq4c8yxf;*3&m4m8o_BH3hq;%lccPF?s;f-MUhc2K(!6N0MRvp4SsOtujy1pHmuKe3|h_nEOLw~=v%Z^u2QrDFU?!l&CeYBh;jPe@rr(mgH6 zpl6*T#ga(@M2^9D>J&1zg_T+ zixO}3tl&D=&}11_Z^ae^gidPw2%j1JXZP4mpO%DaON#8_Hm*Ly&O`}lpFB!+nHEhC zu8fG-=d7HjoJ+KA%B*nBhP~SKI`#Cc6)@NQx}pwstz1^b7hA7!t0I0F)?H!H+lFfa zrPeR0eBsUdQ;<}iwv^MM--kiW>(Ny~ZdSSmwUYuafz(gq6^~L#Zk{t677jwpyfjwv z7YZUMp0OALLU{%&3a>+H*d~kHe$CR;NSd-VBU1tkijsLX6aHsXH-wsh~ ztM8msIeQXdm=cvrjZOyfn(s7dfcpIf`H7L*7YIoGPL=UX{eGx|k%x?!&B|g>=PbjGYUj_>m!U^$)A5(t)xp~@mK_j z#S5E|Yr6?nzD1S?j?=tD5M2a%oPom-Gz-AXz*!q4IeehzWO>MU4f>0s`7&5F{&vio zKk%AMZCS0l0Pe2sxTC99nR-uUUnq`jUJjgQ{7x%-ul3&>yhnPdZ>`0v_3jn~yV4w> zqH3)eFJ?7;+$J@#9na0W%5cauqnO$eL*=<4RT&`amYAuh*>#Lym{Erp-sj1;m)2+5%vv=_+%V`cs)k>fbW!rzG;nt~xpk7ESp z+5Kdgea)EKe4#KRkb<@34S=mb_@b3okkaDOannwy{_;CPVwGlad`EN&fevKEjY8)s zAktqUM*$+eG@!M;RH-slYYsWeI%X$RFUWBnAURIY#KMXTa)`h5PLKv=M~phXQ`P!9 zwcWzpU8sU0!sm1CuR-xb-W{fR%m0$V@wY$@;=g)>gn2x;V|KrzFo&_ed)j@6{?^k` z5~AH)1?k?` z8@-HzBKPy(UjY<*s%%TFH`QL((T^s zb^+lLjrVbQq;D2mZ{91K%YTg0j~_UgrOpZ;p;Y42E`+OVrHNGzv#${8%R6t2-Jt{n zC}Y(%L2|5vCSM^y%G+nHduk zbf|^RWy$-p%p-&Kva_s*D>^6Cq?)qc2~bd5`cQshmwemO({V86=3Ff1a!g`J=;e## zwx&I9N|Bz@F!@q2W$ucG0(tPhn|Nfd&7HiNuOso-UyUCzKNDVi^|s>`sWAD=Mo){? zAE9mw$DQW2+GOTn(*ij>B){SJp!R1XBq-U=(yO^ETozjpZ8>*g+oI3UJF_njh_Cx+Yyu!DOZ!%h~5 zI4c;W>xw-1Ynd^=l^?X27C?`mbB2bs9e6vTw&O3t#XmZ{l69cNtGwOeh3#~BIaxUx zCvrF)V*K%HMh?XB5C8Mcfq@i>I~*7C^Kx=bFNJR2=wZjMp&(G_iRvo7xTld-uD>?- zpQ14?3&1-}7@~o5X))jBy&dNfrXkR{aYvyt-1;aA2m3w0C+80Vhq|EMCa^}bLH4gEFz*GkAF+rH ze*!<39B4`&^#Zd72e+%XTXf<4JT$Y8!>|~xtj6xVbK(ylVm;Zu<|Lf2<`csIK7h_EEZ&YI#@+oR;{H0k! z@Z#M4ie3u|H@4$@7|(&417cV#R0k0@3ZDpGc2E~(u7PylkyN1hyQP&5N&5ojGQdR)J5Y-QZ-sP|_QF}>#q0tbS7Mpo}mmn;_|V#^5GsI5Omg?^y&u8!slP_;~p z%$n4(t(-?t$fKU%a5F#DA2lvQX^g?vxD^oPBbX{0A}}+QMAny2)~``60<%aLOM+B? z?iFBxiphLXxIkhG(2v2$zG&4tBtTwCVyrvS>1E~Xr7%uy7_OM`O*9e2_Bc+Q)N>3X z#`ZiQHFgBCJ=x?Y&bG}L^@%{1e^-LrCu!x1^GT%$gaCD`dg-fpAEZxcyji#~CHYL;34S>ct>Uf(8`r{V&S! zZ+}yUkN;1~@CqrNwXWGCF;O3m?K3H?@Y1ASx`pwvL0?0!x2i)2M zF*gy47sF@@q%hQB9^eB@7G3tFdKT}zJk9q@@KJ{G2jcy4AXCQRac5_c!#E<9ZVGJ&B?D)=>Z2#V#bjB}#CzS(iUJJ)-+CXt+SWFYwIxvGSx}n!54@tW{GtpjNbi zeD%2#@=a=y#syKCk5Yz{Vyw#*0(V~=AVMk-i~FXXbxwQz|Ga`q~((0i~jJn^Ms~ z-R8Qg5qHn@0wFEU)N}J==2kKFkC73}EGO2PhdrbMLbr4U8O?J)1NXcID{UGX$9a%M z45AX?Dz1-lre9Fdb)_7QrGKJRzmnhg^c`QonQ%+Vdm#k{Gr=@2eaTyv(N8)~iOnGa zMv$1bxwCHjSsC1BQ9riDwNBLgAzd@kt&Hd-t>pu#YB0r>RV6q+B1~ZwB%r;m9*uV` zR#ZJ7IXE0wb@Z>s&Ye`~c2cc8g_DIK0qE)7)NaKmNyG7kuAbjyQa%a?#q~lB(*8G{ zY-Q?anMQz4*4W(K2N5ZlS^<%w|4M<`eLEJ>9)aWgPoLtyKzkh-t{)#Ft=#QoGeDi}b$uxRcd*Q6@6)>QGWX&w zz)#oO1GQ(xx#ywx?|hM|&XN(yhNR~$-4vHIAJ8eB8dDs*+u}o%{WewD92?B zH6DNQHWvf*KQm~)sTU5O&8IOwmGd~tAY$^gpO-HP?1g4>K#7~07)nN|FC6Ge#zDz< zz?a+&v?3HZc#N2Pz?{Lxrj{(v-5Rinsi^GpSmnCeu0E;({V@Kbfo~*1tLqBEz;OrT zybF7>dise5jqdhIx6(Bkm7JLdixnRPF%`oARFQCDoR;ir|GRG9b9RbvKt!P8j!98!6$asigmvkcdUDHc0{je%@;Y{?>I4V&LNk@9@RLAIC3Lk*jAHLcsa3x z;9j6+Z(?Bpu|L~OG$u7{M;P>{=J)I`-Lqc?QxMeyFbXv8ueFrx5i|WgEv}n{Aca;_~B5%pOVlKEC5bN&3tGjU=69k0hOv%HpRa{pxR$bh+2?mMDp3YrA#rhy+Ha z@;_v9n6IEV0up}+Mmw%V|4ah{O}H3h!orR`UD;>YXNxFLXNKhI&O7q-=%88=89T}m zpOfe|`b|6LdPE}BocvdP`tR#=cI}U7tndsL=^I1cE>fR=VtWTA+o!GxZ*QysDeduCkjspgJA9#0L(oXz})k9VeaM-%sm!_b21<@BO3yUlsG=KlT5mb{neyyZ(PXS*0w3gM)laY9q01zQ#?7Vwso$ zq$#|v_IG`|$$nl|a7r?ZNwo%)F*c?Bc2W)=H0N|;+Bou$#T7~jM{a~@Y}g4_+;~e> zXNf_DbKpU(H_7IJTlv3Hy~m9FL-h`7NC9-O0MNX@6)y=MQ--gtTwFnDl<{K87{^vZtO%tGvTMxQ(%GZYS(C?%R=)L@;pE3b89w`qD4Pq1w z%YotxLIl=_foIG%0azoQvGpZtclN`mm!=SUUM|$|&&ihz86%qm5tbs^6R=qv4Io@d z3&0I85D6FL0EcL=u%ny( zQyfS^c`BoV9Vj1;#gq~}I6g79^)Gxy8vp(NdNw^#%eHhL0nV3ab%Q>7MSVX^=8y*= zkR4*98)mD!@9b0s?Zl232znI&)&ESk;T4ay@$DCZvI6__LIlbf$2EhUj^9c;a0uKd0cQ95k&Tsq_+QVL0 zCnx}+{geMFv=8tQ?_=B=776uR0g`c2a>qoVyP>O0~Mv#Y=uC-3RmyAOI4M zxH9HIc%;Y%>W*mFN$&O!s)D^j3Uu;+9uv8LCEO~^&+tk=+Yg=Y7C+d;Z9Mh6A&aL2 z?BT?BozBjy?wAur!0!tD{o4xsj&HbF;DZHC4Dhi2xm*)ik56T}@P%(MO*}tfb>Z57N}#6(aKKKB({;oeS)bn-iFSa))w2K`p=O zW#-ef!Gd<}Z!#_z(Nzmi$7s}Z+78D?za@toZY27F?8qC28!ZpACIIH$d&E_x%Axwa zN?j{yCwS?G}~t0ISq9YRU?<)ADv*Lmzyy6nMG7SY~_);JnH}#y?o3e|Zqh{$Ahi zJs%bF7rzjq9W>>P)QyeIKqce>N}l|Th_>a%i0Nq|^j4=MYvo>K+}P>ZQD zfNeUfdHY=AJAE0ilko!=zj@J}b*p3TMta@BKYO7{n%(mBBZ(6j`-U zw+!MgI@sITTS<#v&+7HD7k>$jY4%&++8jQp=O_IbgzGxtD)MHkr_}{JbU-TuQ+^f8 zx7_&trIyW<{ADgy)^k^l9j-@s2&KyGKSs~(s*gdfzb~&6W5$!$E&M>4ux$eEZPo89 zd7oxv7<&fv5W=wI!1`rHPPP0;BhCrdL~{KUE%gu|L61)ob#xWuIjrthyn;N;I(BLJw~8*7C5XRMLHAC23wM&xAVt)b0cmxDp3kq;g9 zsHwf7PsPEu-Ato$z$U$pU!De41%!TwW6E&E_>PH581CC98vr44lr7I?=bjKSH~c-+ z$OnWPy#}F1g4>}+l0?osl>A|A^yCY_uegKlPwE9!LPB{)AYo|#Q{0v# z)D6TSTCnLaM|`N0`(?>IBI*-3p1tzVhC6Nvq%YS|0*79C0pUlVbsLENaKMdg5yaQl z;&DKAWVgLq-bgIj zl3X`({YQB);)|sEKe!i1eiINE9VK|=2z|~@5XHm?LzTRVV|;vromD8W{rDdl7k^EMfC%3E zO^lW43feO3?yO>sx6f(K8H(D=xK({**s#?x6kWv+4dtqS07*bHM38$uOudGe-aAW{ zGQ|~r?!llV2S(|u&aOa1@vVLjrh3k(M%*%wmFV74WJbJY048kzGAbI2Z zZrx!wwW!)_-n=#E!^o1>e=l6Xb?ilNo@=pZSoVp{(9k4k=mOW*htI>u;QIjFARFt? zrJ~igV~j=N1VsV@Qzrt9v&V*xEIG4<1nhkR?vOc9T40+hME?4N?fEkjf2i?zji+1g zdHk#M$wss9o~a-4y8unY&Io%SQR3N|hGh;9S7pgaZVD6D#LUZgMlzqEM9bG7YiM;T zLaM-HG`0HaH&+AAn7~My$hiu*=t$`26VGg=fz<$4Q{#!VBG>sQa?#Xf_VGWV?qPc( zjou!s#{4x+OOkM9Po&XV@})hIMx+vv%_(NnDsGNq?4JVpr+{gEp5zr2df>W(f?|uH z{Y6N7o}G1DmfHFXGZkf=+2ub%3Y5^oGLm_Y3;J*v5{V#A!Z^HU*0(&&Ue4Y^SWdm{ zK~a46PlscgS=S`;7;|VAI^i#!x3)&#YT%{cqU8{9@H<3E-Lr z1pm8XVYv;*1k@Fj)9O+#q~1^*%rpX-ti3~$#amsUzdt1RqG)VHGctR598qA}n1VPJ zigIe;xmp9<`oB9KY=ZyQ@o;e4@nGq$x?2*+x4WT&Ux*=nG;Jg2Dyf}zqK@7sz~ZR+ zbpYm&VY#$pi{=?Gc*dSNV_8U}h1cC2p;^Ugt6p1vUdNU`QXpgY;P~0vdD7{}6~OU; zhysp>>rU!%M90I5&pSIdSIYZOa1}22@sM8^Q0Jg^7(S7`9nC?)r7SRX7KnxnnV6tqpn=p|KlyJT&ZzEJvX= zxTD|N9VTE&MZ4F<RbzJtf#bG=NZ_>vYs|7Zd6KeGQ zjy{&>$iKB2a%yq-M#Vm9v2OuvK_q%GbufE!J)%1zThGtGW%Cv~!fvf^b~SX+q`X_l z8TF|_?9$yxE9njzDZaE#U>Pmk9N1)&;`<~iOz?_C6wF6|%GWIbKL?v5AVyoq`mP#f z2K4aclcY4iy`lDjQbSZsUy(z$ z{GjGFKHJ!LUK&(u-)|<0uBzoen2uG6Uw-~f6al}*DzW)GEV7*aKnDB4XY45gwWQ?l zMMXVD>e#QEnkCJjw$Ke1F}*On)tD6cfJJ&TErkL}N8iJsSJ!q(G-_%wcFa_&q+kZ= z*l#J?NX1}kWnA&9cx&{Fw`inC0u1_3sDWIqNs}oK*cc0jmK=b3s$gAhQ&Bv*#1YSNPJ>FPWOQHyZN?l9s zS&@Y3U15bNQ&oG&QCHg{M=r8_3{%l zpLoJb`q#t!&)92@r4i%}I%*}lDkI5e^0Yk;n_JG$n{UeerG1)fj^~wpiPVXweoR{4 z_BEDD(M)%$O=LRb8@S_0PVSec^}Jl`=tkQ6@D5D?S@9S(|95_cNC!R90FLyi_~bB+ z3#^cx$_y1^HiG04{vOeyk>Me zq<}nCL28R7fPJt!dvRq5nSmrEj6|!t%Au`2?v|0*zLmrDRs|gB(q$-!CN7ynU>!R9 zfGeEju8ON5nfMfn;!lEaJSq|Qjg`c|Xy8-@1-yf%<}PdjEv$h|#bW~TZm}&*1pP@i zD=hcSJU#U5tZ-~=1Q?uP_%!_EpX!gE2OiElTP1%n(pB4B|B5nM23M)ko8IMvN_-0M zKc8=!yt~QgIyP%iPPhMbkPS}bjz~qwOOg|mL0@NYI82d~oOf)M)^)S9BeQj*gVrLq z&e2WUtJGVx%g)a3Fc#Kdp&9V)L1$;@yR;V7@>sHsnMJd~kv}JoVk(D4MK`YmkTHCQDLUV#E?k5|)MV@$&@X%=W$?Nw|oUuNUew2STgib!L>HBpM#2K)Q@Wwo=_+(p=6 zPMIfDv=Bx~I1W~B)D$DNzm(xa#?6eMRUI4(l}|c4ew}i0jHxj9`7%q;4P|wFEv1Tm zjrH{WZ5EuGNm>-aU6c4}ZZk z#u{KyCOM<%>P$jWGf!L;Yb}MhX#5Kt-jF<#>K3k%-0J4&w;=aMe>l8DVtZNciYO@O zP)0Sitk@9@saluYpbMcTA*|xq zKGMdwmui0&68wwiuGW_W)aNz34(K&}{Ib#4t)w{~pOpK&c?wsWSxR^CGhz;llxt05 zKX`3!cr%?dk80qyYrp&H^R0oaA6}PoCDn7CcS+K`srHvYc_j!?9a28j@J;FtZ}2Ti zT@_isQ|gm4@S6e$q-pm{YbrdXU~rQ^MK)u_`j|4z(2X^wOtzYYntw`jlz$E zUP%#IahK7L*6Ac0|x{^GY|151%xw$8VdKBd(Q`SQ|O?f4tEt5u(Llxp3W#W4eP4jVIao9CfLqU}DKMn;(@ zwXc=*Wsfwv^n+SujEm(t?Wumub85*7mazo?ivhF?+Zg@|ert11Dp1GUy)1+M43 zUmiw>GFnp7e1>%^l0W7l#Fn59rD{pqb1gJJm1tgB|F|V}*WLNV;RCKPPe%4x4i8CV zT0>}MCP}F6X_3CdV}zEj$pl@4N6(0RD4elIrLebAcX;PyYkc8K+(O|e^v>45p1e1| z5)OT^5lfxCLnI7f6A{-Y`*W(*6!|8_<0#?m0iDWy>o;M*3SQ8Iyzgp)LkZ(ZWuwCh z)y=ShHRaBJzBAAQn}~1UHt6B8&)Gb&XVP!J%^}abbnlPin`V;A8uAW59(}(0p|cTv zuIM9yBeb=jLH{}ZL&KUja1-p8e#vv6@cvKh7QY!*XA1PuOPW^Ab00ikhtD{eQ^r*O z`P|Cx*ok$cQm>;-r!=oktn*ZxyNq7=0AbLT)Ww;pld~>9jLtl|Q*VDFyqlNhcA{FcsZ))KkNH^ktU90S$A?N&x z+u1XE2SO~~CBA+)$sd~?PFXPAx0xH_A42=vG-luUHaS7aSfR8!4lYtF;2P16yopS zp6|{1d|bgiGa%iIG$NS(@L_76?V=z(|LVT)GY22lP<@1MV)mL7f2-E+eH$RTWgm~c zcH*Xm1dFiLU+~S&3?@mzkG$HF(z>Ui8>s5u=md#}l7U!P#})pQF?Q2)710u|@=g~> z$$L*%yGBH+d?k6%TFqW^$U7T9JREbyufSbMHdgV+&@vEoWJ1>uQiqiMQuzi*HQ9e! zgbnfI&5Xk($Lfs#!`gd>HJx^A-@zym2}DJu7Y7vuk*0#QfCWU9j)-(YPAmP#pV>wO8JVuiBf+9P8syQF*mcV zE$6HZGIX$E>WKTh>mFT?&NmN$FEe;hss7fO4SzB>u0)k`$;RUdT`<67U^jE|kp}|M$^Qtfw`PQm*6w zyQ87jh$r7>itzQ$a-kECjcabo^!lhsWEEwH5i+n2e|Uy@o9^|9d}Gi&iKj>HIpmKY ze|=KEl)%HoqOX)wqU^mG#VDFN3c_8AVxCXSFS;+A0b3G23Ctg)_r(o(UxHeV)9ZYh zn0y0H}f&>b8pr~meA$y=o8?O@xyiv#v-X5+d8lQcEboZ zD{<8=?gDs6Jj~*wQC4emx2Y>amsd&Gdy@H=l-R7?50ES}Ms&ArKTxoiCX};ne|#iH zEjLc$j_3Gq-Y>p}=skqGMk`Q~crW0@uT zVu?OKU-pJuYMp9ybf(H6W}@A-R)m3yISo|IAJJnftV~0h5kWP&a-ils@YStxXJA*kbC>vPy#dx0YKE+jX+vdLt@}fQ87R%~{8>$yz{jr%_`5@$z@==Cq| z4kw#{&!4$P2l&lXufU(HUa?rH61|Zel+PWi80;q?_El=nGEOqm^N2pb->;ZNcz0jU zX5rx|YGtf6{VkF6-ndV)p_$j|$SeMWLvcDW?RA$r9)h`y2I95jJXyl4B)k}Rs$DoA z#t1k6>+6%L3QrV`I4WG7-5hq5#{R-WT-aGb@RW1wao@k%IXrH@J;zx_JUV`Uo)7)2Kp}rbk5Uy$m&?aCO9RmEmP_9av!mL{2z^~10;=MhKR%x zV9NI`lFwyzg{-ZrB$tW%bhxSi$lP9wY0|66_%tlYWAw(1PED^^>h#g`Ii#k0m~t&+ zjlEp8sJJiOL5n6W>s>>Ls4XT^RCvSeiU+BMGx#7t%g=8;QOeX|25*xv?Ky-%}{ z_%V*QiW%r>1B%{+AhZ!wjITyB%j_OoWu z0B=Yj=vWRW(SbWKb^3SrZrqDqz0~wElHvr{O>a-ALzCF$cmott>4G7);Vo6s=L)UH zhOWgo%xXmK^sG(yj(sc2Ab#f~N;zuW^7dIYNeTYnZP!b`+tpCOHrlimUb}JbUZg3M6rp9p!AiCx29W zy`hoaC8_+rj0M9t6U!`PPsX^&Q|~qi32(Rp*R!26CMCv?x zmrcN6*HB-f*XQRK6t~cZc*Mv!J5RNB9J_4*!eH4GYc&bcYLwLDEe>$6dTP#!dsQ?b zy1i$b@36Aj`)qk&KC_`Ozg^>f=ORbljiDmTiP$Pl;`ybGl<+>+r@J-epJf}y=brof zL;Mv;-L_;20RnuEfaq`6pJz;BJ6Ypt9K+%;5i3Gr1rM%YEK)rY^VEY%NMAnj1kJbG zv?k}KF-IP1qpX z*9W6+^$zzxGC6~M_O!Jv;Lq!?C9cv*t)jeQ%ltT8zqp}iCW*VHeX+&?{LS!}v>&UK zuctG^dBG_E@JS{qUuO{}jz-8NNU$DRxMVd_8r(J_%_NM~xvPNYVDt_OpiJVE%zT8b zuj>Tek~|IxI!}mJhsUm}#q1-e!lsL&sa{V+D}KX`stdhAerOVm881gvmfv=vHh4nI zDkN1iQhS6^jmPyCM$OI5{qbe{lfrKZe0=@|8}RTqI+xE}_J(G$7F{%IE&8|?$9ChE zfV9btm|wB|3J7NGtnHOPBAlP}Un7{ZMW^xbR%~oT1=9@vScmio2Xa_aO-G zkIx;dg)N@sqNgdpg-m|su(jH284>5f&*En*Q3ra$g4nob!$SpzDn9=Y%5PMj48;hh zJxvfd_PE1r>|4t*7Tel4b#fp&GO_(e0yqGns%oc059Zb{0`p()=I7wRPA&rX&bHOi z53+b8+!psGlgZwVNogyN270p5OorbGvDH{^l?!(Z8n+squ@TMmbi?5hVzfqP*~l9u z@3(M1ctV3td^E8(2ad(L+KUa*U=%I;kWtNic~$XRgn$)iwTqP7>F_e7kk2(c%#=S< zd9rG(h}f67=ro$Kwc$|p_75#-IEZMkqAr$iiyq}9h3_WfiSMcw{8ETr-FlXhD9dnS zKsGXH3s1!Mq-yQ~v#WJ;d)_dgBg>EdCA($h$>;c)xQZe}pd)u{oa{N`$KajZzm>jU zU;6ZE(p@_cgi)jhR8K<|9Zul_IgSSdM`7E|86l7=kAlvCU1K` z1sGKMFFn&A^{``LZ#hL-@p!2;+KfxNXWsIBoldRrn(f-@?;C`TF}=Yfa)97DPRo*3 zeBon;+O^Ev`Dqc7em2a7;tr4)Bja%-L$&G!uNrY#U|gKLuK1io7Wws?T6;4hk9^zM z=N+rTU_ue+xCU}85D0}E!u^yS=Edft89BODw|(C#bi$P5D~{b3rkSuMYn|Jhe4V`y zm|Ay_q2%_+>YCMN?Qxy#`YIH&)rGymBEdvNP3Vqq%cL*j#=cyCGPVHb!iNEE#a+@TEz(uP!Y{aP?Gm zF*h+ zww8F{_U=omo^ zrXdgw;<*E~5&T*dGRIi-#DpH6zwxfeQ&G8*Rkr1cfY-{lhZyDLXOkR@1o|6zEhpL~ zd+JY!N4@VPoxqe#*T3Ff<3;~4awvy9Lb@Pb&}c;>o~sK%@9iP}3SFr#l5<}8*}2R9 z!;DP3uccY^_cpKV7~ZlkyesNI^#?`ej#BV)H!@0g zi>#@7X5&fdYuYt0R=s%ok-ZN(qcs5CGTVch31zE3gI~v34HiVzz9tgnnD%GCp$t&O zpM~um9#D5Qx5-tp>4dns!{-d#(Ent--5rsGc)re$SM(p}o7v%81DbAnNBpm7YmdoS z@REHA#7=5YJb{pSCZnflFNEnw?~*;g*a9!yQ%9QOjaOp| zp8Qx2(*iv1Ljy%Icc_umGc+rm}ZiIu;Jk2w-!+*V?8RbVQA;95Db}Js+^L za>p13v3&j7vmI0fbgkFVStI6p!R-o zY;Q?xNA4O(tOthiSsxW?Ji+*+<__i_yZ2|{ylYPI$DoC2`K346O9(bRa1ug8!z%Dc zL`cGXEQ;I!huW|4OO!S7MUeMEP0sf;HN^)LVJZ zxkmm3#dx6^f*_?_#Re2_ykKuK2*s>o4t{5_)mGTIq_$M78iZQpL-V2WXGuJ<4MNMF zqo6A5=DG1yY*y&1-Iy$X=B6kFxTFPG64+@Bonf<`JRd)r>S#phvc)DMquw1eAqYSB zp$nyN+XqHlV^Cpcrr+%d=_o5okX_kOTyw&Mt>>SEa$%rP6c0OLvg2$X#}G*3m>?QY zgTq@f5g2I_p=v;q0;Uq1 zey3(6FkS-(jk*GfOc+N$CSc`Ig*f7UcVas{32{>}l@?}%Iki8!X}F{cd|3iaQ6W85 za{HRZx)lqU4OpKkzSob)uENDf+|$Dp=`vuoA(8Ta@MbJxn1XV*6*+=!%-+YS5`9Jy z6aXok?;~42siCgk!?*88>r^R9;oj$haPF zvWUWb$bFBOJ?VWPC~VD1kl`Ok&U8HalF!-unHiKeAPsS+XltdZ2Us9U_+xu8 zmekr?Td%CZEy0G;mp&@1s;ZVt%HjiP2QuqY9sFowg+?G=%L@y`QndOE)wiaYPWF4> zQy$lq=Dh#sIUbcG-^#fn)yHpJj{yn1hAQHMm{<6maj&A6R^)8ieHTH+Jz5#-!W9?x zpVdD30=?2Mtj!5_n9aq9fUr1Y6G~^9pe;QJdPsntE33VEc57uk|P`N8XvL?n~U+Hgu#lqv6&$@TQ9>p(%?Dn&f-$^HV z=|1UBcHE;{XRTU71r7620@R?*8R%N?Y69a9!$j!oFzxUk-@Pn8OtggDzp5Oo9DT;; zzv5%I|Cx^o0etK=>#-Z+^#4OXrgGbWNoHzn3M~7=Dd=d#mxPq7dB~ne{fc2Vs}lpLv|>|B=lbI-hsf_0xv1vBwuqguGSm z)Ix-)-PS&ApGluWmK_{PM>m}mk!+jw);_{s)2jwvFUuI;>Zr1Rj=Rv*;UXnO0L(^t z;@}G223=hTXr!53!Qr76duGHBwq(nR4+;kDb+%iT`)%PY04nCBO}VqZi65DtU*g&k z|AEC9`|Jaa?syv#5R6HsNd;kO+Zmp<3c{GVVB{PYI?hY%TJ2&2`7#3b%$7K{j1_01k3oq&ms1LhYsTyFYp#+jx4Nc3iaB8f{YBt!d4?Z+@_(xJ5ZYvE+6gIw9o|z$h8S$tKy+ zctgsM*5D1y8p&CAsvJ-|f33fLS5^6%ay=U10}M5`kez!he0QtT%3X07f#2U+FoZ#< zn@+~MWk2TUd{HN}{^JwSQLVo0?mY&|UsOx}buVb|h#0@O#cZZy-tD9NLDV8xhU%F3 zT%TLgjNS!5Muv@bkf?Iky>|y4(<;T2iJhHsne9K?NS+NqWg8YTx#BiSVl-4!yq05) zSbWO~{+p#}Q`7-IBO`#5xfbXq-jn-(-nVmb)M|U)a$wxr&^xH*1hH1gmBK}}AZ!cY zw$X2e9o?y?Uu=q%7%s`6%Z*DFa=LqMBX3p@*J5ZtN4s%s%!ZExIb)~yS;)zn80}6h zAuLh3$0v}+6p>~{)Rx}BD*a#3&Fk`VJH|>aS;c25*c*Uu7QaKcvcI4k+l_xfH&O@u z{}H+cQT!`(Gx-y`C8nUJi*2)-mJH6>wD(i1SCoZuRs_O6ivIyPPx&qUUkLvuso`5xMHS#Fg zfH!HuDW6n#HiG8J$W8O6bK<_Vrq|!dEs=tv#iJ3Fvf!7BX7TW$ovN7J#&KQZdU6Ou zX~LpgwJ8q`1Fhx*2WNTad4szK4o^m9;8o0mKV}ZW_57qoWln8^^m(^7&I&V z*XZ=eB~B;%%v2)E5a^3P1MeOtV#{rna)W+DiE}Ti0uHoZZpRoVgo!rG>?V6}iS)BR z%$DTyrX$-Q09pi5?u&nl(sVeOY))i*X8VW#SX2Gf-W{gGS{7rfaQTLv`@5V4$)Db1 z-;eVE-w?$aP?ZIE1#YX66d+eOM>X_-SQ?;z+u9k!E~<^F<*FKjXdJn(M@QSA50nV) zSg$@U*r><&c$&`SiZ98Zb=>UjDu~XAN@H5eqm5B?mx?7F?5Ds2r8q9cKEhspT=o^S zHm5=lrUW+j7+rmPO&D)PeIahd(Ss_4Kptwzu=`)ZUBdqe+>wtvW$?%m83?%8#bcUn zEwyO$Z&x|=Hd!SnW83_x`n!uoPk!{*f!dm>j~(+1Ypc3e#2?*1 z%tB%AaP-y`WhYro{c-~Me#88i({W1^Z4?f}InvoimLTr(F00S4%Zu0om=pehyPH0t ziDy)fxE7y~OS*pn4r^oQAq>z9m~Jbm^FZG|Y>=RUBT-KyHdcp+l16Ec z{yjD3N*739*ypMt4D<}7imB@^f#?G+9;8`8)D~eXj>UZq7cY*3()>_UFQC#o6;gd{ z2s zlyY#9YRp=d293r2MQOa9>b=U^V+`yF%?}TGGj>p$6s)u^o|N~*La4CUU*2M2xT}Y$ z>moi9skW{fZ>9LI_*Z*`SV93}kv8Dsf_=$?R~X2TG9Ke8)Mrjyx}DC}H`Mn4sg4&7 zu6}U0$o2bgkdO#GrE-Umkgw<;kgzcSzU&$F93@GHBb8j>DhOOKXkH2SrInEKV@&|x z6cdv-X=crv{K&PCakDz^3$3`lbpUM5%hU0dHSI}SucK?nT24(W_l!H>#?G=nIXpz* zWA;-}-%#InG!B@p$g5J(==N@@fsm!o-~67pe>9qiOD(Vn@sBODfBLAsJ@Z)8d;V9P zY%fy9sTd~~0#za7QAA~#Qcv6ZC?e1vX~Dm_ZbKOnVvFC5pB%fK$PaqsW>Q$z|8rlfXqjxZmdeSVDViMgzl|FwlPKa zL1>B3L#NW9_NIpdtK@NXg5!}k&)_@s@o9@N^YPE!oG<Op~Ekm6bIEFFqh{lJi20(bz)X^#-N3kSE(vG6=s|OVrVfCpI>PITC}`xK2Ma1 z6uCqMYeRa4g?4SmI)lHMSbQl+f6VnPMXbr$&GD5aEc&((&3G8_3@~@dE`eq-zrZhcm-`;d0io!_H?(HiW~>DMPRNu@~{K##DiSL93fj=(N$bkX|52o@^Jan ztztf7Yj!Yx;0Prxh`8<-xWEsdnqr~_NdcOJfx&_utNs{aX1uU!9PmFPYRh8BJxCwC z-Mlp28+YawwCc<>0_~p#1y*e%SH*eVgycmT~RO zd((HK!;eC_1i)t$%#VW^mqMMCBmrY&!u{`<_jGiocbrNB-Y0jT5>6wOsc8PG6;?4; z*H5rZm8qp)?aaS<@{J%{^UrA}B0bA42Otq*KnaY1LTC*jNAr$xq(qh1SZ@NUOM)9K ziP=P_uN(k+z%o`=49uD1BuV&X_R$@k)tw3wha}hP-@uU?hksuII4ga0kozet`mYgx z%7t|>i6jUizk#~il)gQnEpybzV5{z<>QZ`Or96I>FDIj&{b?@3-dM)!6qw6{ldmeF z>etl0PI`O?ri_-~1Sa_tieL9WWZeqiY1XFu&{N!}&*0Ck-v zpD(5_&D5z2H!g)J)Gi_X@ot5yM<9o)h@BS_Ovb~z{*bXm4xN8q$wzj(TW|;zf zf40ZF=>8@CIxcvcaxqevSYE{yKlN`*rk-ESxLFzi+rHY!A?_j24q_Cw;Ge5`Gk?_f z)t401%VsjkTd-HEquy}Gs`$BYw4PL>zxT@jei~ao-`> ze~90?eI)Wx;Qy6d9>7CQ?I&sj-zlD#v14)lnUkui7;>jO-jB*5Xklv>pj}ROWJSN& zuKnXA6#Tfiztxx$bD75E`kl7U_@!~6-OW1!oyVPrsRA`1g)dq6>ZJPZyVh3!Rd$D_En*`-hZK?O8F!L76a{j)uj)w8=Lx1?mW0M-3)ulIqk^NPBu zUwd0i`dF2vXyPtix2dD!-4jYA{`|ynd!;gQsCP8mgl?Cj@NCK@E_DNh0xXAlg7rO2 zbOj^`t*<*C{L|!m1f5S=U12~CUZt2{@_0> zf^xvSI{0jytIcB(HTHO2=5tK&xCX{{A$@xro29hCVR;g-r_1ns7O;ago-U;JIpP!K zS(I3OG`q~PYqUG@64#}LEMK9j&7rpo#JR2J+0)BAD63{;eA|=`%?9BJ=>veq2xYK+ zRY&>L*-8^$;SffqhL;yA#wsfaZj(EpxuLhi=zd|Bkhc4&HBQ$LetG~jFIISw2^$6Q zDJ%y#hx6XH1>d^=2Lj)Zh>W+`ok>KswwMhLVY!E^(A(9spKXg<)#`n#(cT>;_6NPo zz(%h7oPeku1nr#oieis59(N+P%nLWZf+Nmzjn_2+VxXTE!gmxQKq9E$vx(B7TViN< zTC7^$4P}?~B=RB4hNtum-Mw7+jymS?)2=J(I%&7^t80!8GudDQi4%JD1Ylgb0E{bd zfW8xWH17iYupS}+S88|-qLI}ovW`PclEDaa9H_-`?9t*D%3o7SD7$$DcYCnzPwS^A z%S!f}!g%b9pJm=jMX=Uu<`oWDrQ zr5@yWy=BE)x>S`SN94Dp`58S5dzoen_Lfc7}q7PaV(-NH$-B4t1Iyc6e~m!g*AW^dq=MIp-Yh6 zGLQEfdEwK*RuFhGY)$34YhX-*c64;Ca;%P#S&E6>k-ggnaWfLZeJF*OZE~n!*1(MV zYRN6G9jla%=K;Dg%6CfaGw4iYd+g|nYUbUe3zo`)86AjHso08(I_qS!Mc5JCtciF?9Yw<+CtbjrWl1|69+ zreY+aOOietH{NsZK1k*kG>h4qcG~OKm%6?OtWI{T7Y^Ju0aTXyZ*|ERWC>soO+r0l z*?LZW0Z`JBV%7;mArCWD%Cb&0e9uo*)XJ9oq5Ri~aM$aA{E^2LWPoJ9`0(rNFXKVHLHf#Lg@BG;XK-N>+n||5t zkKp?Ma9QB?A{I<9elWfY){+DiSRTAEpMOX1gB4uGujo)e{64i7I-7V7!7n;GdpdJ} zIy~N{f4+}hN5Vbh?)RnS6EPKL==!eHG*cH}c;uC)2?C?dOwi<$YpM+RZG~G>F=-2& zG>-s_#{veq&evOW$FHY2=dpujM(LFEOapz-kDf2CL^1X>zu3~Mgl$aGGOt12J*X2k zQ}BE7hkL#-^XqssT@6=Re8k<(2B9FC>9p9X~T@@FfBRsfJeT#{xB25qyUt)a^%y?m_FUr29c7Zy%D@Y zfH9lqhilYA9CFAdj?eFs*H}PmT zMNbPAX?_Z#zYMcjS?k;5Z^A~LVSKPSat+P|5W@|yueUtCtoo&o$$3v*z)A`=$Dt-w zZEY-J&x)JloY|0%^u|F3WI|Y3Sm( zuuH)tzQ#(GZF^G#0_(!RCL*GvPiJieY9YSs09mcP;b>A+umuh1A4Q(%gvAIqv`KG= zCr<7G7{7V3H{P-nyswB7&l!uTNWiRJ zHXc-;h^1SBT6=@X=^6oojz4mjO}otkZa|%+<|Grgd9U)~sTa-3>hc9qOCK&)W>9;m z%Im~gs`lEdC%f61Zgero173(=vI+kZaMtxHAKWs$#2`Hu6_jUthK7cFF(2NQ-+nOA zPaEd!$&F!Q)H=8LW;jOjMwV~8f0}%R;(dz0MovIW$YSGwI5x6Y58NV0^Eyb;JRZTJ zU`dRA5V)%u=My3E$MY&M)#x0o&89x8v5Q}vk7dUxzVE$ zoi;naZ-zQYI@G6##dQ-+G>Rmr%)u@3(~l9@bYdxx=8IZ@bOUw!X?vx2_{_ymAv`f^ zdG}5|HeFm)K(I_szCGqA_RHSy3spi%+Jl8*^V#r%;)&{Gc7&+icWkYLKcGUo$T(pl9_$e z6Q^&@%IePig8~W`k<|uIeaaJAYCgd)zBk((vHX(h0{&FLcLP8`NuUqV63@4hB?EU{ z=gu+S>m0p`-{o4mw3EccQeS~Ni#3bC1sYA%4n&SEvo}Y|YQp2&dYWM#f=6cknJ-5u z6@yd}k-XmJ6>eATqyC^-g}}%vg{4S=VSE4kbo;>4eN+Mm4v@S%ij$62fEM=!|?Pf z3@iQs7dCg~n6heNNT)rVG3~>Fn{b%E)i1z_p~Fz_ykbd(|s15ANE=ajZ$! z4xk25g^)^72XW+;UoJLq5Fy~~Blhdv{Mog7vO%5v`}jtZifz767sn5whZH~G_$TiS zR1~Eh^n+lK zkhgDbx|&sP_1!I(FVFJ)MgL3ryCLk=)qB*_d`A4VhLjheXRIdxUq7ozE#lyb{gM^P z*mF~9ONdznwa5mX>EDbqTW)6MImc!q`}XD`>MXjTdGN?q=^&53L>4f1Z-m!G4^Qe z319-DC8cdh@=pmX!tAMgMlwZg$y)DKESFI<9Nj?GyafRtH5*$`tl^pJEmgCS?l0QbwvDxwA#i z6naZDyAkRZXztuJc9Q`L`a$kx_&(Fbq?90BkJ|3F;PL0dWhJfU1cbxZ#@SWiL7f-1 z_QvlUEZcR%0C3!rP;Aq-v32CvIbooeLTO4jQ2wO{y>>Q$BZtSrv^e(g_~PKo5LJRr zb9?Es*fI>Ys_5;ee9f@KW!Bw%Zt+&v;MLeNx?^~Sf?T^UlDKzYV{K)yN4Y~gG}}oO9<1&dSnCpe=KFd)sDMT zLFCO)%UIxj|CC=}>+({s)?w=XSZz>s7sqYBPOFwVwhf zhZV`(6#4>j@TgL1anvx-csbC`MkAK^>+ZWdm_FcBrUe&MHLjdy$UWZ(Ra}`zx*N+d z7bcS9h_5pDrCe4UNtJBYpQGebXwEOQ=T$(t!+qui7I9ois!tYtB$9#(LK`62@5#CH z*NbXQc|*L~kKo-6}aZl4`ycdCbOS&8x`BvsNDx7Kg-~OaJoLbRY@cm+V z_aF;nvizBX)8D|oNCd{7t6d-~leP%$HLq%&LB72Axh0_1(){mZt&6~APH;>&Q;z{L%O z%?|8Enusaly}=1zEqtQ|Dw34CBj48lJa-_?y_$-tgro)hNc(B_@k07P>FA}csAX0A zduVCF&m{u2C-?@wze(idsRqD|I?3ZO7RTBvwoSWq(I{^uX7CQxS>dp5HS5Icl-q@6 zZ%^zOjNPH4fn7asw;yJ3L((Sv8K6x7{@(Bb;E@Wqz5yhJwG$1)tAj<&Q@VZmH*4^p z-&@z0)ZCZ?@(c5Av7#2E)f=fVRNszhk-`me_YHw*sha##+=PV#m}%zE^XIA7P83&8 z68B<^8a4WQv_B=)p^@Hg+Ym*7{^b8i_uY&Ecz9WGSOEUV^MozWLOeRpJr88QY!^f6 zED{uXvD&~M$U0hytQ}?@!&3sq{ zS$NK3CFu_aVBlZH{{o@P068C*&{<>Z3*Wk{(KrCt9Q{f1mtBK#R8zG2c(Gn z`y<1AvQG*?s=&j&R;neIuhyjA8}}&lL4MLX>OEJ6Y8RK!2@`o;gZ;_pj5l4QIX$ui zIAj6KKMA!RQ1P1F7cP{jN?3pmDMb6*X!i%ZQ|%j>0L#7LNaG-tA5@A`0$LlL2YfFhEv<@d z|FD#oOw^CcSzxK;vt&3xwknT6jSf$H?vSgRGNcIbbTi}$X#K@i_2AI{Cu=OS3>9Rq zDx-<~s*)YS4tnlgxFRr7L2kpUJ&j)NmoFuGO1gD`o+I*0rQ-i!^r*OE#5nvP4x8)% zmQlYLop<&;m3H-N$n_U<=d3c2>^ykLyWFy|{*=z0X{0T6$;%|*`PQHWVtc6UpT>{( z{M_CltlcXJ$GZsL;D=F^tKk`E!_0GNxWivg1j%fF^*YXS-~5&l_Q|#KCW@)M_t;$m zJ|e6=7DwH4nTCS8ys+~r?_7PT0mpCwQ`A#6G;$s+%Cd2U=AGjOI?T&1TT;UoItzG> zzY&4IT*L<88O?82^gyqx5`nk7G*zqg!-Cr~pnk+!xoG{DycI1#%O`X0F0sK1p|f%b z>6%VJ7($mV&KS5F`?i@1S69i+eZM7Ge6=fh$qV~0u0o?i&8580zB00z#TY?A7LKhP z9MlxOd|rRqD7`P~Ugh8K;HdC=s-$fRyH%PBTlyoB5Kf|;=X z^|B}muC$&cNT$)Yxy_8bE*X9swBfvpA?N9E zdx|0Xw;~iW7x!EML6XYXtRB1?n#utNv@R~NXW_mS<1}T{d6T`)KXaM5!(1j1m$gBg z-`o+^)N;!-eQ^CHP~(Vq(5g3dy?@>Gk{XG#AM^%pHfi!+53v9A$Tm z0l=E4%^tlC%cKMF@l;%Y%Zy6#n(|9oV*E@_WM1kFJ>!Tw`ue zV7p##eUe>SL_mO6`y=rxfMn+JfUf5;en8z6;alv$xG zgO=y5(QUxOA7alalBU0P&fMfH|E=tyE(@Ni0a`xkE#y|E)n69T-x}=!9x8oCM~~!Z z6Ve|Q9F*$Z-wt7v)VcL8FI+VGr|p~M8+{fdCbmWbi=rL#dTwDCiWC?n7iPeQN2OAk z6I26WwPIZGGjn3$#G=)~&%nb@3;QhBiSNPw zCrwD^(R&a^-^J^*e&*cCG`$0L?2KR>juZCG(ZqA3RotE5>uB`^&9qbKmdVhNgNuFy z`v-oThkFK(m1s~wEC6!HE`+NVcAnu*$S9a6Hd*EBWH3vmQQor)Q^hwh|n zu|gr|fo2@LiFQ#UvPmOR^)p8gwM^iYSGF&aQ1T}3E%;%fLSO=rjH1(1tMuAQv(U+Q z9i|s54fI5qQ-C2J$lW?w`$!5K8yX1cpjxev8)))O?6vQ0Cx)URDIhnNF(rtpLzau3)lsP0G5|Ec%l6|} zO%Wh4JFN_S?(U-bQ?(+|fyaOmc)0#I3_Ihte@O&zx|}p&b6fbl1O#tV(h5iJx||Ra zne_JM5BjX&0GXv*>4&{Df}%tOKHs!=S}uKpWwA-jK<23R&B}Ca)QJRD?@}vWQzykd z8D9fK)GZh7>9UDxh>OX!RGRAVo}6h_HWP1_4%BE+W!jPBrotjn>cC>h|qwmdL}qLUSjvcGX77q{$zOk z$o6|J($BTybPgLT*_d%{_O^1-*P;xcL6>qf8m;2H4)6Yd zu~(YcEhA61Es7Xo<>}kH&kioX;AdrD(R?rM?9moOA!uLT8Fh!NjfxZv1$GfQ+X9ge zOhcm;mYJgwDBS2`^X&QOaE4goZi7&>-XF&Wrb&;i&V|J5&^{qy<2pm%OUCw7-vR-} z>bl>rf~XBnW5=P%$VtZMcvZX2t%7QpjERkbvH>$|=qzFZt(WVo7~2KN8sxC3$uAN( zJt)LHAlLbKc2g$x_snS10~(W~q`+u0{IL>{p_yU91Krf0=#??aWIpsj>=?l&7G}zZ zEmTDOxIFr*&f|lf>3&9&irjO%QPa;#9R@-DftXi8se-Y=eSQLCNkAN{Z8Lg2(-r0} zC1Il&Sajt3mrqa9(%h4UT#xxTvb!ru;5WPjz=IvWp`xzX7^eFV-vXC2Cohu3X2*!} z$gRz-Z!?g@x@=_WEEjM+mjO3EpkYmbz#0D@Cms1`ob*rW>R;oelwr_VgU64Qi$cz` zx%CcC77E#Al;lRYT_)6j{S?a@d>FoolmM2{IXXBk4{{)?%|E99lv9t4@Ag`zWSCk1 ze;+5k4JB_#y5Z%~pLVr&FMGK^lP6U8r0;BtfEQg$a4=n)$&)tm-Z9 z(k9qdf%g=W9{6z2e?zj-h%)VWm`yOgM8?M^Z(D`8jl6x0@azixh(O_di1+^Eu#A3z(I%r=S;?KVBs9CzIz}Y!{oKhT zwNVGvOp2-s-bobsVB{-f!}JsSVd@YJ0}rr@m3!uYNS}WGuhXZ8k;ng-K2>Uj{+>QP zOHQADByD-w>ZEbLSoczTX3Vzmh(E>R3Ku?>LpKJa8g;eV;}R|Z?U=oT{OLo69CH4& zOa7xOr7Cr(EY$jbU5f(4*NT@N@{RvWXQAc#MU?uXFBwjf^{FXcg3WNCK`Q&so^;IC zK>#)M?903{x0~0cSlnbVBn-O)4j>R7F&~Oj0Qnh^ER_#SXK{M%YG8Ser#>h^dJnjVy$c<*tLiWNys<0mRRDlYP|6*pd{Dv!ppWw zSRn;Pee=cawFKf}JeKgD>6?yNids{V6N|zX>le~bTy^4`6#X-k?_pIS*4CbM)KVh{ z5|z?08h8$+N&a5TVsGg7<8u3#vmD22TYnQ9NrqIAzb(TP;R%-S5WBm6**Iz^}G}{Si(-Z0<7L! zZwoeH%M@r;WjyyB-?^buc@^-J)SSBwd{+-vS0PVlcz-{})G~)gYQTK3TwSN~l@F9I z_Nx2ZIY}EnKsayA>kh>2SO0rzUO;qpUhhk0*!54ppyuTK>CT21`HD^K*14A71P6>j zPJs2Yv$s3-fl-!jMs-=mwgNA2CkI;?ckXWe*K7!(y`_n=fAiuU~&T z2}$fG)}YiNFjf`7O4eJJKJ{)om|jl_5RsSg=vN7Bj#GeDySqQ9#JlF4K*6!oidB~l%`(?6mWO*CX4=|%%zq*baf&ly0lBVq#8RH*=25tc)I=jbsAv^fEh zNlmUd67u*|YFvRX2WYTJs?tek99mqv!Tfj@)N|Uj+W#2CS?gD;E&M(`msKE=_gI}+ z1PmLX1;gMq25-N(vSLr&5scFtFjO9hsd0?rQ&2RRsT9&Ci&(VR95J4NQ%u5Ns}J`> zSC*V;6q>ozGUaU}ddF9u;VVTrpJMloa3Nt}?^W6dXMSfxIPvnbMunSw*{QGlkx_BV z)6@Mw2jpcQm-`89p99RhC6B+G6vlD~zxcw_(vsd9uyPPRb@Z5A7%zA( zZ0fV7$%AW_$Bf!r91fQ$HO2?BLbSb5W3Pw3(4y1+nqoQ}kC(lomTtCr@kUVQ?3MpM zmde5(xlss-4<(;0QBM*tEINLS6k-E>E5P{9dh)%qRbgSgH`n1Bj*G{xg>9@mnl)Ddw}C#_zFIMIe@HbDcw1d&{a~^(N~a zr6}rPg9+fDi*1wcW+(lKlvv#q!UV_L1h|1_oXCMrqMwAvmE#7l{|u?V6kq^Cs-98N zk&Jk0WIQe7tM8)jX!h4%|yz7ob!TgT{J;6{}R7q|`ju#v`(hM)zHY9DKd4RQv2bPxR zV98O{7cMe|%pYb*>$4EjDAF=h!d%LKF`HOS2*1G2j^Q+K*iRrrx}=D&nH>7dd*zW#!MUsltH;gy-CkV`lxXn8hS~ zvk7PaPLc9wEEQT^rft#wTq)VJ`u2G}VGuJABE=Siq3gJP;3^*(3RHdoU)%H&Sr(=t z`VUd}5MJ;%Gjb?|P@an|Om2m)0W~gyt$eO~V0%J8M((~uz5}-u0G|+zFxepnV+rxd z`*?FB1y;5n3!J+Z^Nl^Ju6!BnaWN{2?khU36XPP3;t1Jn$yU_1nN78R6CW!f>);s$ zOeX;O0CJ0#v#IgeKrJLG`g%~l^ptBRTYCRXE_=rUMg5xND6r4CpqAqM-J@yxd3QBr zGwuk3l=8i3u}5N}nGa2ASrXeIkm!m|PkLN*wCVt|kMjHLhnEslQc~>Q1F)>DKQ#Ol zRa3KyhmNj!)i~H=EI1(i&PD!Qe*Mkn@SR|&HUo3F8{Uv{^YZe1ca-ZM zg_2A{j1749bkjNgCRpJym4hg1QcdMWrWHFO&@@hP(7%|kn!-2Hs#xj-mUMC}+njHn zk_xh3lU*oHI#ILjW}EXikXPHmQOLr91+3f${CpM5c^{|Bq90DOYmL7zL8`bf!p0II zyZIUSJSnXOIs!Q%2jslp}25(&;o_EEWX_SmS-4bQ>uDUX^^cI0xr9MT`aD!mJhs*RgBezQ zNZvN(1V{-#l+fUfg)_tP!KmOv3h}b%?f=!9*%4e|%25nit zR(paCjdeX_$B$Mtt@I|affcAZK+5;%oH3@1DQ%XOmDOB?O=ZDL-C#w%Uh~8}2>-G3 z4<&!CIcenc0pB6~DJq8lnNy02D?1W;a*C-e+h+qBF47oBh^%=VfC0AUaW`R;+q5h9 zK?s@-YmcZ%2CmAhVTO;ADw3L+7?7vfpNnr-H>!N)C)}o-<_8oZDGCTfKozigAa6L3 z!<6*6o-}a>@SJBx?qG)-n~^(wVu6%MJ#3Z8nyvZr{mj$uji>D|LnmUm!Rnga>1ru< zKHm^YxU!!VZHZq3?WdCTniCZ>?)cFz)*$Ork*|~;TJ%)e2cN3IohQFy7Yx~Z6e#GZ zix5u~-3lE+9$p?I`s*{X>{v57;>lT{@38Zz*)!c7ziEs&jEJwc!Z&84v_3i)Jm=7o zcPHPoa1tpdHvAPqCHx!$_S-1cWLyJjodd+bE=>!b#FV~sqKP}i@7ppQX@q<z3&9fckfNj%^#*pNZwaX5+ZFe`g`{)unrPPl^oPA9k84^>J$Gn z!@0SKlDQxHK!p$V)5Z!cW83`rUjU0L87d8ad^c|g>Q;5}?5v+2_&SUJ+`O5Af)eHD ztAabln*HOsz^)cxJBbKDDC+745&nlodVpYUw~zc9+RhoNtwxi^n41L}wuc98f}bqG zzx_YVy?H#;`~Utw(}c>_LQ%GosE91twm|Wfw_b%{i)-7n zDn;TqgvEJIfZNIxgc`d~T;M`mATS2=f>7)@+H?smAF4!Oa!rGh+=^1Z#7&uWRBF_Q zva#gxgL})Z!)+rFkKo3sY;S zDOimI?OQ7MDsFRu!l$Dke2R8o;g4x+-VIPj1?`d{eW@b_X=^ z=?QC;jwRCw1hncVCoSwA<};46t3Ba8w;vQ(zw^X*faLs1aTJtA#pGAhhIDvRfp@jg zd1^on1-Cts8X7x;imhdW3Jl}bukdUnFFtwXS7nCqT0&pj_$~q zo4kHmCpimMNjrT(dO6>`HP*vcgENaarBC?62aE;dfTUEa)J=tax3MwaiM2Q0c*gkz zAU>H-;|n%UP2%q>DNnqP<~q=8mj?VX`9#f^C&EO9V0E0?-J;P9A%quBW^=DQD{ zvoJoM!0~!5h@ZqDrCYttf07Q3Wj&$FY>06u$@re6y{scA!Y{hroazl{ZrZ$d~T+DQ(M}p zxseY}g@XS%P$4jOUvM!BPY$xEy~Hf4Fq`Z&Xf+_syY$AH8nIlOv1I|ZHvAWTEL&RM z3_X-wdu4?5GmZGLeMl$(aLEHbaKNtK5L%6$M_{f$d|gQ$BB~0#ptZXP`NSBqYlWGX z>}D=yK0Ix#oD!;^sHt&)-5BNvMqOwL**T@KGk0M~3exu^efJAI1K`-McWE@FFY;A# zspNIU3)V{mnbJOgNQ*b?>s;h+E_pR>GUcj1t+hutG=-*WZg|7s~k_ z=|@(0J?eV)4MMwWQc!VoMC5H}3{VJo^;;VS-I_j(y0z|`WityMfTg>vRi2m=P~hnaPKoDZ70Nn z{+UvW8T|0k>);p|kE8H^(n=?6ds}#VzvQPjkd_o+{fspd8<@}g3y|$Si-D_5mjk%( z;U5mHyQNIIfUQG3u=j(Gf%r?d3ENr(1RO6E!53Bdh3knI8Ew{9Ti~@KUSJkQC}6L< zxScxH*k{-WmnU752vzJ zi|ge{obx+BIU;?oqWzLsM$*Vg+m>MthRj{Ge`v+}P@U07MpJFApGRB+jz$0IVFd>V z%@QcNnz@-=HHKA`RlQV?{uoXLPJg$FjEfDMB`oe%Rsr=s$!I9JT0ji0 zesySEXI+FPvEBI~?&pUZWh>{4Nm>t9N&Msa{@cs!SB;U#&$6}C-0G!~AfOryV<t$jP3oD4ug7!BE~Tdj zGww{5Vs~o*>j!Ui9L7l<_rH)v!Rt8yQmD$Cx1GNbM{_1@D<2#Q&PbKY$L*Xa!~xMZ zjnM4b;khFtqt!>}BC+@&Jb9_IzRXvb2b!=~xEuYI3D5ujztd4$8D7PW+tlKrn zG=LD5D#*K^fDdFAcf9zdAHsIV3MLl#-T*V#6c#obaM|H*jh;%o&FC( zDdz8mQaI3pfrFlSPu*M=!`$rKDyb|uZ3JTaWQy}ja(Spg)YR*;Iu6Ulo{~;^kz_h_ zn4q=yN==LsB_?apLoP@q$@NA#uop5YhNU~tO^z0K8!}vwmJm&hUF|Gt9l(D=t*$@E zLUg2sy(jIqh|GVYgzl_B6n#mWm!ORYBy8K&sQrEf&b0QX`-89r_$1yv8LLhOCbLzh zv^OD?@@>uSsJ&(*W0^u$UAxhEbH4-N-Vk4sV5B)|ytLZY==I=oLG^Y_Wjb^_XC>igsD13k}I+xqwuMYjJ-R^n8{sniVYO5 z$66R~crXkRGgcDll@ioaBSq_;r3Jm?#@wj;cOP`?iY4e`Zml;_w6*Z6jfw;V^h0Vw zazm>3yATm$zG2?pRXFMPN?6gAHfm4?QLoKKa8>zFdtf^+c$<7 zZf^cX+tx@pMq~Z{4Iy#yL!0UG+l&1gQ{&U^IS1Fhy7p>4eTw3fPNwLf=BxVXOC#<@ zg_z?zZOYHcQ!eC1HD@O%0~{-G(|ZK7wt)hBcHo;8v{@*+7u_$*zwID1wW5*xg(&HI!BF%3g#!Y>fxuF!i!1SwThhe4{?Kx%)^i zK%d_%eCPJ#+8>lt5Y^H7OHH@i9oV}m34YpZhQaf+G8Fdm1869IWso13 z+3PJKH)UYO__1Prk~6DZhc$VzZw zbyr9j*}d|@jl@g}E`5SW8-mgI$3QAr?0*+ONptT+U(p1PenA1;;y$$_&y`>^y3dgr z>{1{s)8aW=7mI*bSRL3#H;^5> z?uf&J@*OmUcH2HCqj714YMyI_^Jh|wh?DmihLY{GnihGLz73}pk%WSQD3;- zKu&&dNQj+*ziBBMV(o?^mjI}DW64*Dtz0ZKM4cZl*waeskfV3d&#G?0N|nustM+Lz zXY*>u(K^vF;nzbNp$whL_|Nz{x;M2=4+Shn!&IFKt91D=UNtL&8U*QW4faCkH2uh-I;N(IaS_npQtAfWj!u{AqN+R7zZMx9l z_p+yw;6Il=dpQQ{eoCWW!KD7b5k3|FgYen4<^JYFLF3ky9dn98`Jt9`oF~HBZfoe?mIn zHbbTYpq}h+NW1s5HUAsZt{{oDt0)8(Hm4VWnH~`00X1X%-Z@mdF5=kqA^LOx&Dise z4Ns^q*Qq^%son`Dl-dhko521@hnxnrTJ0-$30$aUE0P=pW!j^WmIp@Pt04VFFxj7h z0@2)OyV@he3!Hk>Osy+Y*YSigG~rD5%xNpv<^J1gb`o+nZ@E<&k_D!wy5p&{-Cdt$ zzKSl?|HO3G`kimtfwdI{eROwULd~Q2;Yt!*H?!LWuyw&8N%t^U5~N^$P&hNDnVL6E`=?|IS-lGRJ9jW-b4;r$h?VM5dRgt%ae8H-z%JF zOK@*92=Ij$DCu0!9A{O1?$6k29#~q=;U{#?<&VjXukC9*KlI0<1#d+m$B%xzO>$VC zO<%gEa2T6vZ%X2zj;~~CODc^;0k4Mlxm?D_ymYNAUlYbhn{-n3rW7j;b|ov&{DPkKoQsG4VrwG}2ozmrDvQ{WOd`Kf{zS}lYfR!-?!F-eHw(S9zE6;{Wkoy zXy>W@F=T2;qRKhdnM!@Ek>cm8zY6m(S@rR$5Vh>{uB=#xo>8XrkEtrGygc~=x+Fs? zGtaA{oD2=!T!APCIw0Tcdq%vj*j|0We8q&x_{|$PE=R_Yl?rc;@U*EyDwN<(J+99a zG~9sRoKgzKI;A#r>X2q&O!*!)4IxEMt@8v-U$CAZsD;t4u3^JmH@3D0xR1#jIYj^n zj_D&PjISZ_2eCPiMV)T3B?Jx5#IkC|jhCcsx-iGQkwXl#%gni}f`sm@_i*2%XvgK8 zC-{TaK%)K`PL%?vomgprnfUyM`nNri*t6$s^-c36d|GNW6H!WEUBmFo1Is@zaX?Wd znP3>h^j{Q3vcP0Eiy~1ZJ{+iWc=qgBGgfrm#SwFvSt>)^YBc(z6p+Fc2FP#10H1DG zhgZQ7?m)2SrBVaMYQt{N$j>2(-I0Lv2$GiNfTekd&$Y5qoqlaGVTSVJbs3a&cuS7p zzN2cxM+Y$XtiyO_*cl7>P9-g^R`P$*Xm3as02|l%02xu>aOVi&!Gy4yQNEm>zP!UQ zNzwPVvS8=P7mN=HrVE3_udXdeN558FK?={n_D<-g z0p&0ww|$@_4)`dU#|+$VV@vTGZM;rj#)m0pEircyweQ}Ej9p7*vOLtsVc3pwB_kcC zbm+U)={xRTy%sKC;zJ2ir5hqi5pLUyFmP=I_xl4WtC4lR&(73eB@gM>#qtgFQoOfmylnIiHsUic0%h>PyYYdiwd*$I~N6C`5uDNHyPo>d6x%l}f`b z_L71?9fzNjZ##)p@i4VKha0@xGM*6Rp)O8#p1XC`L~^RG8xEt{0xtbeT|7s#NYg1` z{*jNQ)ggN#h{<8VT_t^8|2Gg_K7NjW7$6k|_MqRCQbv6IR!TX#^Z!&zxp9CF!mgTG zyuJ4*GD={j_|!#2?J@7?ZZ&V5#8}_PKawPvEchKfkRzFp9;cS58^Y>IT>v!e-vD(X zAJ~ubmw<0~g{X2DDf9i?^xk)hZco+a4@XJngBYy;z#`|{60Y!*qs8-5r@k&QjaiXg zv7B8UqQtnu%i}JKRs$&2Vz=1(Uhj3wIM;ys-ZF=e;>92|`|GU`jn!2fUE4~emg{@2 zW)MK980ke7z#Y&@)owD_n`?~8Q*TYne@VhHyuY;llgaUf^>-qSLC&O<{WU0}C*1%S8IZhfs*qunw@@sg9y_7n07YHkeyG*y>@u zm5)*a&S)sfaAyA+=)EHTw1>hr?SL`c5@_`#9;={Lp@U0}?r4MYSuqpWhox;GDeh!fiq}*za2p8=kfV80Xp=9!2Q3nQ}=(C z|5VTa>-^^;%xesj@U%@8`v-LZ*=V$=_^i2FTr;zPm#lM@9jiGf4L^)=fp44bTVMZACvJ9-PZ0J5Fog@O{b>I*|KWx&We;b z>L~x*yxe9Z9klAx$#{8q!qC4uBETCLvxH1%_39(;{~wDs_}Cc&5zFVRC1fvdL{C!0EcL~%G?Q0`zG zvn2|enLSIHe3)fW_)c2o4bFZXx01?I3Q2b3nlbL0Kg^i&DvofN@wmg-AJ1arbSXo^ zjSJ37G^)Dp;0IX}d;Xn(j}vmzCZ6eL7;9bKIqZ0sfa&to%dgK&=;H%?5R}s~bzd%X zT3XubsN6pS?IP43m+iCn`RV!sr9BmGNEzwC>3*S2`4_{_yL=!}{c)!MlX4hmq&JYFeIS&jXRXa%FX#k;hEW zk9+fP6qSDx?z|0yfkvOraHlab+^KYcaaNX-m4O{5W(|uGbKlu7JGC_$!R~)T%Dx4S zZ8yk`J;2vUQl2|I8KBE2>1V8+rE()9@jtpTn`He=#8g%eMk(Ep6Iz^AsKDUyRlX5@ z`tj}pYOJ+vaK2mR%gonsk$KLBES3VEt*hCD|C%%0pYrQJm7hDUq@ z=h$HV`}(&+30F@5mA%nEwo4EAMSZIT=UBD}$Ib~YozB-1#sYv#}A05Nt2UzKkZ@jv6|KHiW0m7i+{!!R^o z_z(EpcN)mbKxQ$XzRm4W)}_MJ=0YTzplzRM3U+58*q)VE+WK52*+haQ7u21e>uGDX z>f5}KxXT!AcUq32NDSR|QTHQmV6>)Y|z&a`OAT=yS{Z zHmLI4io>-h1jN5S@qIb?4xSWd^QB;au+0%%-~jF@c2ZtS; zvt;H###oJZX(3@FUdnZ2$G!XZ(&rsKtv~IL$73y)TZxO?nF%9ZfLP1Ti;R9}ILIZkr#qILEZ_`I&U)paM^pQQ;p_x^sT1V5) zXlaTkVp7Q>_z-!5s74IWXFIc#s=SzY*fheVG*alhXm#JpIljB+X@YTLMV8tV*<*6% zvliT_3;ge{W?757JDaIu7oA!d-^WE<$jM>f%vV_=H4LcYJkl zv+INTGD(3$w2E&hE&G`xPn-BJA*y!LDuCuzHYORrW!nq5M+bzPBgGYm&Y~YyjWHkg z-Pzpawea3NcP!|q%FyJTm$T8l~KcJ%5!K&ugi&5LIfdZcvC1tTh6r~X7UXU#_0NJuR z(8c)O#kJ9yb!eLlj7?ftS+~X*Jw&r#@9m!ex-VYFRh#NFcd8s{pI9q^XPJud-0L-v z5)f`sB9>&?lD?uYp0jhusC+|j^2C*KZSy_!ws~Sz+w;mL9-a$|uXi&rn4H-PwH{B8 zS-KtJq8b6}rQ(Z)=FyNcV9nA%Fn!|7p(DrI?00Oj-!^Go+cdI&FzVT}i8pqN@H8i5 z*+@S)oM>zx-1v;zMoY@;3XST#EVG#Ds)gB4GS*$~%kMyoSFIKO2-tm{GGa% zw9_@hqg>BkBmwC$-jWU>Fo*%`E0x~o7jR<^JxGgL=RRGkZluH_ZstxmelIXT^Y#E&)#{5PjprqzcdaaikDgT3k(CK2C?11^p7L#hZmL9 z05BHt0l6AB3T1eFy>}}sIV==icE6nay@6EK-<~Pwj1xtyseJX)z7KXg5N;1l`3gp^ z8^h9MK?JnA={t_sTk!93yntSM%Wfm0+tYwPqkH^@;8n)XdB}%4GXq+!-(0-!ffVjP z|KAFu@I8VudY7~#>oe(ZR@rff9}V!loy^2me{qbRx|Z;1!(5U~@I|K5u!z0PbIL_I zXuYSegn093L2PAhU`0l9@*P++Bxf1gZujN6@}iWifr#HF#1)I}v&0n;@Vz|21z6hr z_0Iq~wsU2CxOdTLM%>fC4e34|hktBw4A>@@0Rs@2d4L(Kb=OmE{Va02Mfqb9z>5W< z&CuEh*mwvr{%H}^KA{KgE>TCkf+cL(fL6$lW0F&b0@=;dBV?U#W0-ws8wEN}H9mZX z&k(0@dPAmyPO^}XD}p1a_g@6~Fc;I;Vtu}(T92h~h~3yA_ZK^cK3zGOW!?|3%~THd zZelnDH~ZpkHqP0TgAK6fPr>_rHP0P7aGLKSUBw&~qpFEIg`Sk8N{60mANMPo1hG$L zgZ<}+w<`RiimFyzR-*VF^+3p<>Oaz-7TPSQh?RN=1#8WMhuv@(LNM!>D_`e7rcTgNAGQ&AFKv-rU}?kpOXmkZnQYt}YO*&DwQ`K#qNwp$>w z40<5yJs7hIpgL4rda1tw^&GMEG=zM0L>VRB_kvAT%6 z5jQ%zI^@q*NjSwTyM4F;D6;`!%Au%Zbt72*Hd!o1eY9pvtA9a?{ zU3EZkT>!%iQ5!7PnfKoIrwXOS2-B+k^p zdFWq805Q>j5(ky2MlViOiOXCPTi0(V5c&wkOvFz$6itmHp_j*!Ax0z&Qf}jV@Rr>< z;oyTkcEE@>7smrW$a}%^o}Py9$RQcBha7LjG@0MPy&f<-Htrkj?Uf;wftXCaqJTA; z%)C&=_Vz}<#pj&j+Y1bMLPA1`6ArC2qcUhQ_h(|)a@&pob9-h&f-OSS%LF!Z&r$}2 zI^{vA^AX$T!vrcLv1y&O7&0bf5W8-y{qDTPWNzTKRFi=7hr_rU+M=7YKMMj$w`}*w z;>}jJd!7wr1Wk@(tW8VgJc9Ao^=Qje>;wMc;GxrW`BX@M$dsVHLsZg+nYWcmZcu7Lh#~9)Cc&HD(FG- z_T$fC6Qyqju?$wC_LA+#yqA#^C{vLN(m-WWeeW&cl&25$b=bp)gZZ=!bs- za%upUK!|I2RB=&y8vW<2DDKMaUjP6<1youSatCtbPFrprlg5wV9#9Qd1OkmSw7>6K z2pex~yj*gJO2RZ-n@aEHTVYT{`hbz1M?&p4MWn=x3Sjfr|HS4E{XLr(^hQC^PbZ(` zIH(O8qWT(Hllq`ZEBli)d}IA5be=^XI__Y-mxU@IB9tQg^B-M7%sC50+-!B$ff_B} z_|>(M3Z1+2{ATx`MZV;F0V1QQGb;>;kb(-iJoVW3yC-fOW99RuV_pGrtNyph=9S68is2QP@7)?A=uy2^3JVv*_(kwQXJ*Ey^=PjRuV5xmQ^tvxe&dLAQ zn=7%ewEUs4&-&vAkGnvWCAj1eq^IY>Ks~UU#<}1@LNahm* zMzyI=qL{;f8$wOBnR1n@nM2;hgTf-||EpZ<&R)~di?avE^#Z|#oA{m+|5%}`a`Z4K z-YA5}rl1Y_UHBeG{Z3~mDUkpY0DMljy~ZO3aSB8XM*%daEi6u^^uKaZ=RN2<{H2yf zDWxDaI?3k%*(v%rbt>9};n=?yY1w2(_A}=Ik=8^Y=G0FTt;H%)gk=LFtS7_;0&Ja) z>hR62NHO8nv1q+x!zhb}B%Qld4?%s0vz07~JZo$>NooQpIWL6KYzt-w^-WgZj*sR| zAJ21}-En@}M0Y7FHYw`q^N@fzurSdEdDL?|hC~CVO6dB}x-!@;{F+CV_=kB^G!#a4 z17XyTcToVWfW>zo$9yCFe&0x6sRU8g)*EySOXXDVsw)&{HdBnwfX8#j>7ynYQPf@W zgGj%wTrFL>r)d}i=}|6ypJDdxN~{FV5du_$PPQB12mLAdEll5}1YSOxGJf~!_*Uw5 zy8H{{$);u~_V<))m=v?=GlNVm<3her-90Q+)m zFVqV9<4NB|SZ2NO=;SVeiEJt-r{~(jd{-Krj5GIauicu#Sox@|xyomBrcm%j=F?Y9 ze)hFHgvcFh_m+rAW!j8Q>F6Hebc#FR=fIsG$R04&6-Z;~Y)33oh2S0{H7tlyN@$>? zU^1?#%t}+;&-DkzW{v6-ctOP~>V2ZiTHxmBD?! z63V>~*F#VJSNRtV?NG<-fuB=mt0732J2WtvY(EQ^8-@BGd$k^d~)h8ebh@5nrNyZ@U5@G&$q<)UR&GzIQom}SQhoAD{2TF?(a(WM{5^M*lD(TEq$ZM6%h19ITc=Y``$@hK|)%BWN1D;mp^m*EQ0P+m3+-hrI>plZdES~sO{|owWF(VV3 z2tk@j@l!hM(g3h${HO-^E>iyG)V>#d%+n@IeA|%gZA+!h7HbAzp5umK>{f2dPS>wz z0d&A^4mfu?4Vc>{t~Ud-`7*CY91Nv2Oi5O9r?x2}E2V3NQWFNSJrEI=78WlT;9y?a z2YP(YQ>?CAW<7b?ezcq-#@#poHtL9Qte%s-MUlJ5jwXQV&GH!)r12U}42x`w8blEV zgy6CJ4&o)mKGL5~`Vk7&4#w>QQ+zci`g#(T9CAxKUeP(-c2OP9GSsQFjs&o&-0i4= zrSa{3vi>F#Dk~=;p?C%Kn%@o3f9@X056e-e46z*<^JV0Qk-IPqh^`7)PrZ@It_cFY zq)F?1KmsmKV3!}bn`mz7bjVEXMF1d)efgSwR4|RMjS^z_1KTU0hEIEcg^Ele5u-4d z^?=EzVhzaDG2YscQqNIF9V}EGx|Q1T@Mvr(JwM`81Y;Q(@Mrr6*1PBjyl=0qc#Z^^ zRvk)2kI3R~1MPA5(>=dwKUy-o=~YJXbyy>iK|(Sf=>;$w(1h0}ek%w{m*jh#^j!lT zEPMIvV9Wl}?q~cNckb)3gWY?Bcn4|7?F0bCA^jfwMGtG?)IMh%vjgD5WZ^P#bo+}5 zTn230eRk?XPu?2gqO(NXmwM5_vgS<&xpuq!I2{uS=aNgev0I4%LFH_)MIB9l?&~*X zY3_IQCHX?r2L=B=s_ZCG##Bmi)7{Q`k37!6g~mei&JamY1xh0)M7bq((H|h@lD9J% z^F2M$5~>BpwS{!C^l{A-bUMlgX%{16lJ%h2CKmaqX*Y;%x?E;CC}*LeqG4Wge_qfm z`0aKY6E?Y+RhsH#YvI)|^86LwCFGJo(3b}e?l-;LE_yOhFfbtD)rm^i?gt9V@m1gA z<_xlw*yv*Y1Kufu+1dvESH%JKAJDRi!7V^!iYcgDa6*8-jgBx3?JC~pGQ+`)(81C) zoM-;ebKF({gkfn%8#E5sN;XGSzlkT!?I2QjD+kbM0636fjYq;t04?%gF@g`x!0dsX zoK7Gd;Jq9G=^M!Jt*oHCtl(QGEQt*BeWvgMXEZRAH1a}{$9#+6vt?*Um2EKE-iTKlu4I5)F3*FL&7aN%K7q2osh zV9g04Z<#BL&1JYlFw>U#*F`lb3Poda>mw+X`1;WK31EY$ z@MK{BSnzFn40V~~D|ut}@w;X3G1_@OM?7)~g{ns%J+QNYAF1`?NIl+a@5fZ3c=eC1 zP^6PND@Nm?DV=|r`sl^*!~lwdZJL$$lv(C2^2UUt8^Hi+fLdmh=1LMgJBQT!Pkv`+da)gILmcOzSBfbFg4LN$*N=52V0gK+h^7jI8KQRN|I?O~>}|20sKRh0Pi*Sllhp;}%)t za3fiM-vzBhQOqfei=VmlQs*X~ng&-lG8Q*KM1@k#b*9zR#KlBvm3Z_yo}J@NYMY$A zxA{&_cHLIUO)D~JAfH2+MV(hsMZH~*X1OGciTD4%x3r$7Dx3+zE6|@k%gtk$1m|I( z|Jb@k&Q!~?ZdYCHTi>QvcLQQNbC}O6GH|`(7E&PeuRD6|oZrt_Y416)iXGoEta8Uh z)Tx$@%)!+3?$-lhT57rZ9p<5@DeQem3G;8c($+D%a~RmRcG@yVSaSABN?P2!;!|%S zG9;cAQ!o}@!_f{cOE(Q7wh@xbx(oH7z7==siQ!DYA<}40YKz0vyD4ZJe$M=5%b@s= zl-_Ukt)a-7p4a-}u3Qs7AxN0mz2mERY#~-*;Ej{xFwJL1i-9XO+l0TEo2TL+^i%t3 zw9E~#_l7GFT+p-V(drn0T_)fw; zGTf=u%)o?ou>k@w1oH{9!5n8)rG(mXAnrhztk~K)B~+H#t7Wdg&pS zD^zFY84m9XyWEjHzh}te#;em$LNPMi*$>O~ri_QHtv}H56ciHba58BmOA~@6oG{HoLhQL9?@G$6 zR}X9KFi=)Uoa0evLNGl5VhQ3&UzZgRjd#gMz*7~x|14lr*hwKU4))5S0c_8iUkd~Y4joLpf zmGe{IugE_MZh96F+-WHZ__hFH_(Gy%vuu=HiTfPzz>OnWQp3rB3f;NohMU`ifU;{l z47cZ5M#aTx)z#&~w?*+7^V4K_2`}5d1`$tkZV>55ZH4+UrMz^mv!fX15yZykxR z61lSAf#9#Zrs55j%ZTOK-wEw`fgYt7t(e!`0a^YZsEP6+#iu?n;Z zSh%l?G2R{%9c8KLG~hnbIB=0MuFe^C=EeO?K7r&@;;#k5wOXEPxxr!*kTqd-bbHr- zG}1gZk9!V()Yh=<1fs9ZNqB97)CK&!)*107gWwaIBG2;wLL=;915U4o?%j(ndvH>#gd83w{>t&cd0cMB`I-fA-rnsG$Q z@rLTlTg!Z=By+;Ar-*G5bBsyV;()Dk%n2}a0%dPDHf#3CwS$XCqaJ1@Qj0Uy!LQy> zpSG0!MCM6MV8R|piKdSVl}%o^?Ay>&c|DF12S(TXYrXckth|4?&q<6z1quCVpwKeE zzM)aUvqE$l9y~z2i)sp_&~azTS;L&;K( z#V7`MIMExw@?=~se-w^SHe%78Q8rSSmJ&#iB7F46Vx%vWVgRn@xG8Wrss++3Zg`Ku z{7j7VWUN~O4{fRR_*D4#pe&AX21^*pLj%5FGGXy+R@DyR!g#j_D)MWokZdc9L5$}a z`tGo>o|>{)Ju7c`kYm!)pA>NwEBaH!bwk4cUBtEOv2H`NPTldnZV~Tc(Y`Yb!4w6Y zc_#3Cz7UmnajM5DxqTCmwBDU->9|({HwOm~I`1kcqqff`F?1R~!08dCRN0!EOrX+IJmTNYfK0MNjuy9c*eGHZNjODValDH z=Ma`QId>0IDkGsn)y+3|F-+Ow8C48rYx|94XPUgo(FAjg1P4BOeyX!uI!~Tt=#m?- zzjjkIV`99yM+-XsY8JFak*X@;}ylA))J_RQ{x;^X4{k<>;Oo z4PUNtmmtGbsJ?4!HKVZliRV^uaPc=_b8=bI9OZxi=}_pJp2Z@T+}PddNL14z8CAT) zLfzhD#A{*PW;Ew2`AK4x>i6E#=((gHPs%GdPlu*>Z13T?e#7PhPO#vP{^CQ&28rC; zeA{m1#f*}2w_+(7cdfa=hSyUnCY9g`aTCvwFL zX=YgtmpXskG0b+y>3gX{m02BON#LNY*iyK*IZ;k9<4(BtVR zCoGNE<=sQ(IuWeOO>dVe83W3}&IUn7-YB}-3t#w2VSh)gO)U^geHbJboRR41*&><# zZQ^WyqD^l>X%bcvc|SD?oT!&z`*Cb4%}mnA%x29qS7!Z5;g33cBct@zDqK+zHfmMb-2Uf`se}CWV7q1fIZf4{si4~_mq*Vp_YyCXFy>cq&RY%Lt zP>Gysa#?sJ*ZnpZqla@2$Q6#89ZnAsFp|E(; zquVH7af(*!BJ$iPh47S7CG_26&)VHYY`h++Vx>La;AhqWB{A7<0bynSCz<_ap8Ht7BiY z+M&MpxB82~;YplSyb!g^%T8@wUAb5OR5bdVCq^XY?kAFR?`)8ABMl@r;Iz_h=pYa< zT?tBSr~{Drx^Xe;Q&)_4<&4+C4x9BDF|q3AFD#;tKYiM5cHdjUO4pm6{5YsUU5y3& zWT*r6+sIN5PjXo*u>kQI+VQxkW8?HEFw3(w7GPp2A;i#*+Eq~srgVeUp9oy$#7}ue zNVz9cMu5=OIpm!ys}8LMaJYup)&WE4y5 zgRLEjJTQ`yQ>3VXq8%6BN#a@Q-Ht{83Qm}qRm$_GrejS;iQ+#Mi84V&q85nB|4WVN zcXs(Su9a}%ZrMrMib}AU*`ZHPezvx>{AMfV(-ss@U*4fW>uhk#U+N46HwCV%y)vSo zxuu^)Jsoe$F|V@gJ2xU!&Mm`8hT!`tQ!43I-=x+=2ofPpo(5|tm7tP=TDCm%g;Q_8 z51zfBgr=lwtEGF_E89lC4D{bTR|i#^E=?XZv=V>(a^_ib-tb}Su;Jz#LXy&1dsBGs zcq;&bv-OA%6?9jy=jRjuc31ca^QGs5kuUk5avUx5Om}ROcGa}S&cC}&I{`=Xy~@@O zLV(uEAIZl*yF5W&_=FW~MX-7NhyE zGo|9v%LVm{5jXtxor&haw5gK7#FU;QhhxYol!Z-Adho$a6>aPkPp~=*RQ>rKgR9{R zG{WO=xXaHggv>2YR=KmBx@)$7Imz4m!!Z3}V9Y(P_#e`wUMO812!hML0l}@bJj-Wl znF=9jzkN>kJl)fcx$pg6(9m4#sAS_UP(l9jeY(2%c5ANMdfwoEP-%+TX^h$J8xFma zNg0L&mc<$Kd|~3cVt{t=;)3rOG{or43`$xU=%)2AzNebL8qaEg!N3Pu@w2;_&15cJ zDu>H3@!guwmtI-=hCpJI{@7b@i-Gi8Qn8CU$kKkrf&Ian_$wpf;@x ze>)~!#Jr^E9ww5-6SN(fHD4pOVaDqC>*!S9ePMCKQin3%1R9QOgrhO5tpJNK6Pr;(#3-POFFv(w1rLTxx zq2EWD?VosTGI`2a1vl3*9Yf*|W{42)M6@^*r-gaxVmNMx@|g7Jrs;^wZC%O zdUU$o{*@Eirw5*VIETd7_&&fWgSi2VG-0_fPLo!8A(&;kaxX6|%}_#IEX#SHUmLBO zYHG67;t6a%x&S4Gyj}v`|4QVkqG5pmF$jTF&1t2MjVm=((rqd^rYf^E?9*vWR*e}+9a%T-ZchX0y@rWQ<)`E}Ygp9-&)YmWO0yR%qCObmfLK{Pg!#J}vn) zzlL@nyW(ViXKOGmZV0Ja#>ReHIlTR$nffkO4u*S^qnTnay7FiFMmrOIV+0dF zU$98wlVgr}7&c=9IqiZkvS}M>ee8R4CBxtuinf|iiN2)){%8odI!CUoJS(2H^;83Y zIX65xZlpx+iu8RqJ|X?r`t%vzA`Id%c#yebMw7Md@kP>q@IW|_(F#Dc`5BY8KK{S zxctHHqVY=m@Tn~UWR-=HLq?S2Wan6w566%Pub(pBeflEBE-OB0h1#>7>cJHmde=E- z-zQOVPqDeL!>q^==?rIh4Drvk)|#4{3ZK9CI&s|*#$dglYRd^XU4&SCsgp-h9I~SU zef8suB-E(xWB(ErDs}TT;RhP+>7Gdh4{O}YOp>Zd3_9obQiSlB$*t&!$fn&VwUn<@ zoV$=4NJjJimH;dH2fXR)iwb4Ev#nY);r(qeDbEG1-TU269p+j~bfnXPT(i4lTQt$>susDPp%i1elis5C(-(t=b$iqdOBk)qNBsY;dJ zi=eawQ9z3HUV_p?FQFtP`8|P|IWy;+_xskj-u3$@Yt6{Yf@eSb-q(GVdnc)*t8D^K$FGa#naSF8;$8Ua#$y(X#!4-O(3QBWJS7jQ$0TDV`_~9b4Sq@>g9{`#Re# z6|UzvlVdWM1LtNK+`ROB=*y`8nE?)_9)AaLKx zsvq=g2HgcwV3e&1o^Z}^7yZus*udmoFtt9Q| zLsQ1YnLFU3#LRT(mw@?xHAV1rd*3OcYrn60iGcDfsFuaXlT*Z~TjFCI;0aodm&1o& zZ7bwvPY4ptpZZKawx`Y?-g`~fk=<_>d683WV1MoG&B9L9x(us{VYJEaZaJGroR#iO zAN-r@u>k%j;#3g^dn+dR9chv*umcc-{E?K>hC)oLiM{HVUZ0luF_(8j$;MC3(XsjG z)ix{3l^DpQKx)9< z?EAUlI>3?kE3JIgIF&Y$#K!@D-&zNxSXMeX5rSP*YKYyTlD+XNJOQzngn^SkMBbc% zp!RLg(1jPxIL&q_Agds^CFO0PTHpzRqaX0^SA9ku9iRTJU@NSIC1k#7@94-YHG)2M zfej29^F5sVrp%V2x_ytYFU`PRB>UWlbg_4DGhg1B0{u$IxWQ4gpGbRP=f0{ehn>w; z{9f>Jhx;NYG;9_pWmnTp#`Y8q5TuQ@O?<**ImEBbJ4Bd;!t0=_HB&=XMeZi9V?snl z!>a2XFF&LoQM%g~&`_o=$As%6WEO8R#xK_QFOq)~5VuKta=S6Juf`1cTQ&1WvI4%8 z!sbmnR^|9J+%`67d9|CsT<2CIjY6;Gsv4$3g3R{97|Cb<*kP;nYp{;hqJB)uBC#2_ z!0>?5yG7A=XW~1KN8Ax@}VJ7_tt`6 z#ygSh;F-w=;>jA=Ezyr3Jdtc%v%BHV>6iMe#jA5AYnjg0yw%9Vw% z!XOk_AsByze;_4Ns|bGUNkH;L!|Jaev@RDURUHRYKN4%5lF{l`=yR96$PsrfaT`7A zD@|w6TnS@QiLaL74^`CK%v+|Hm!jg4e!u7Gr9Be+X!HtDtr;QG=?-Y{*E=bks*A3R zDKK~veqd|amt-VIp8R@dUFk+{b3~c9-FyI0N3S%(20DB3d!v{WZ}*<*2uof%W)=8( z_E(3O;w-=%ZB&1<*COaRC14Fk_&OJ5x3>Ue{%Oi8r<@dZwi)pvdJz`UHFk?bi*mSf zvX;_MnZit)c@zHDpYCzj*ATy;P8*x+$2=B1m3#?tvX*q@5N|(G`Ew_P=aIj3!f7r@ zlSuD?-3nAQ>}n^Dq`kUB76Lp2WN@WHKgxhXs1R^OE~jGW@NS`Po1<4y%``%Rk?`MG z)X9;WxrY|JLy_!q*99VRiri(+WF;e=6SHTU)TE2Wwqh7`3Kq@*z6%%CrlN?pzAcNJ z=s>1hEjOoJkl-KYJuEGLI}IH0l56>li)dM77|P{#Ri1Ha*Dp0{O#3&wRPD%OA9Psw=KqM3T?Ysuuz;p1P; zgC)NvQQtkm&E{}?n_+u_%SIgvdUeU%RezCt`X;r}VB49yW8RA#%fWWGHVR(aqrQ4j z|N44xhYx7P+ZL&jndfvZ;9jP{p0|A?$bp0FalaP_mwb5&OcPUGKi-J~z(=X$gVice zvad?aDWs&SXnX(bSpPB|T>fp1D%@Pv3HW0f#Ddm?Sm#uyM+C_e%X9F=P=&fI&l~h- zKhZU*AfKzU@Ibc^WBPiL96mmlp2xAdJNM-Z<2;vf7*#T{X&513Lexc=)Qi>&bTVFS zKerz@Xf-X?Q#B)4EYLcKm^sz7=D-1wb;=syoSyKFW?%`Q(e5PQ=S0BTj3Q8jVCowL z3itr(GAJK%1UY0%EHF|YSkJN_;3l1;)~P4B zMbEuXWB}POapjRgPir8+lf6ZAel!C3QpP18yk=c(tw1~(LrYD2GBi-&+Od~XL8HDy{N{K1x&^YCP=(E!(e zaseUF-X<~5h=d>xdQoZS>*5hf;?mEa(XgufDFP?sGdUbPJhC$Cf&h!6e0J(K*mtSb z!l&hULa+$S;B~k?j8sZr(&SIP9RQVnX5e2S_xyLDL?sTL`Xhtd(cf5BLSn&rA9!2cmW9B*R7u?B%GT;B~|g3gyOdvCb6m1NZ5T`zyN&1PP) zuYjcvgAK)*+B-XQujMZ51=|d&89=6_uo+<*m%Kjt##QQDbSRs@5G%}ClWEPdLw3~WN*(NS!TKQr4DAj*a?%xz3<(V>N^u#w*7J~ zw$A4iOsQo;PxV!`hBzObEv4+fXnZ<%5%Ef`UxZ(m&%zC$YGw&;XWc9!>)=<7Qt($j zW)rO5tYbEk1jl3NTV?iU0`BaM>=ga5GTFZ~by^5jU6jcUiBg{efuLYX_~&;!BqBMw z8Poh?aLS|;u+J+Y5W(!LauXOi>unO$aLXCFuIs=7f9&I1v(_)@v>(KDQiXC31_yB# zOS{;AyV2sV!r=BY^I>0;Zc=~A#C-Sp7J;h?N$0=*NG*7H`QEj-H~`K}&+aBYjy~9P zp}?M-yu=vbSqF7z=`e*uKVve?fT7UR@umtASW`dFQ4phZ%WWSdaa6bl=w}JxA5&?@MoZ?w1CgrR~WHzR2h4aFnI%&qI(0wRPp) zlLz!2zapJ~`N^3GIWRu)-F=zMT3E{3cbjkd{ke|J9)2G;Ua?QG4u;9EesGJ-L|xhu zu8KRZ7-QF^F@Cq~RTd}>b6q~<=wI!F15b{7ZrF>mGY6aPY@fj>nSyANdy}%|ZMOG0 zde-j|vSi*wx^K!xx3OmMpbh+lZg38jHZCz!|M1|Td)a+5NTs$=Lk8!&;8ePswTK!f z5rSoRYN{WlXe%?c&Q#ey&6DLL!^pqysP#irXvt<*^y)7O?k8b-ANn|Yd+Z}BD2>8v z@`{tCTp@`B;L%SgvgInUy--d&15>&QnRgb{aKM+iWjidEz95jfTJY^ZWqxn$ZwC~6 zKj;LV4?N1KOMcgtY{Yv-L(WI%Nomf?3V4Xs9v@|`_~i2Y_whG=nF|ax*cN|?Td2|9 zGC2X1N^_~_F35({Dxh;n&j)oFgH{Wcnf$cAw4D{^a{}n1fUM@zDlNrONh5bIOQ47A z?d?s>``GP~qUhP)CQac^834*@x?PH@;caI(~PlTr&C>NoakhhZB6d~6Q` zK-`)XP_l{zfpZ*;Fe`Hy+~z3F<;OEoQ5t9+TxDx)M9gKX5L{#h4s@a#t^&KT7xZ{tdLwI8jYa=O&@i;f8&&+i;d1<)Dp>4xp z%0cAFo8JIv{$yg9j9~%#>3={_piTxRl{@kMYAW1uS*Dxx(`Ot1$0RZy_e6bPb%` z#SO#N!P#8=vnX9TP%-60jJI<2>RrA7KfeC$y8ZU9K}nb-a6vt*EMQa$*sw&9oss81 z`bccj3hD?kdw+Qtr6PRIf`i4VZLWQPtp%bIr?cq~?wx3m)$f>9jkjB~7e^2A>j}-n z8*W^29BZuC-obExKYcY-PawX5hGp^>&_}qrAVGaqMTZ?k-HC@x-5W0XEW!@d;6ZvA@*3Szx9G zslz*SVM*vwYgE@ zP2%xtzlj~;hg15%FCYA&&8OFP<=|4S2XG|o-9ZmQAV51N$jH~p+FX12DQcM=o2<$G zk3D=dAav(1 zJ0?|R9NWA3&46vEt*x!z3_Ge1oc#f1f2|B50r9XjAkAHb$+Y51{`WAjRy!->k}F@J zn0`JG19A+*c-m$VLDoDrqnxxO{1sQxl`u!H_@tzF6BG4nN|1`ZmtXU)QHi2=Y=1&( zsog0!#E657!Xk|l_iKDfXBtD;t^wL^H>t8ZuazOXWFc%%PyEo9+xNl>XUYgnR>7Gpz&KjcrDD`+F5W8*UqX2(h7-fL;h^pFTrL!MDvtBrGR)rF}>i%LUuqX zJm>((o(w`A`;-z19A{{<_3WPqTFST&d}_Gh-CUIzX*xpO_cqP33qU8H#13CG9LYEn zE6l3)$PMWcy%er3saKk1dt=oV3cTe2)USjUL+Dg4MYA!&-BY3NaHu<|&9Xeva}9LU zb*9Yz5&hD2A7n7~Q-L8yx@Emc>Xv5Y(QT@wb9)MXDUvR&&juj@mkyh`>FJMIdCi~R zO*ss#-Pr?jX5v?Mn(f@vg@i#F37AWtGNhGj>tL9 zaV$ee;yqJ2^6ca!r5ZN|!WJdhM)Mc2XaRXPDv0#<2i2^J2Lq=TV#76qp946g*%{5^ z@|d`f#1G&Onm2?u77;3z{-bdyZ$fA9Q(ykz^Nl@#Y58;l4uD4h?w5Uee;Ox6pL4cX zJrGw@WQ}>D5T=&vZW!AaS(WE=o`v%Pqhf_dps>6Qu4U)8TsCCu(;z~G=q8TlIzo+n zjxcxYVn)$xGh52;FvGW06-h#fCK*m77 z6i!9l2~)mut31F^*5Ovmn{eZ|ORY!Q;FL2gX&q?8{f;k;K;2d=3(a6?`#NH5YzV74 z+CSJE4h64uQLkwRQ|&!i=H;S)CQ+dWR6+0ElJ0+X;O*^ivL4HkD%l?kDD*ONNZ9yx z0%!06;NKV$^liFv)Lom&;aF3zkCtK4PmT!9ktkBk^vd|VpUK~{g!`x__#?YGxrjhF z3Lt%&b1KRi*X@cWE9@>ORnkRW>T2@J(4KY{l3`zoiJxF*@;k!7bPWJCOiPf3VAI8+ zPR0^7AKO2WzsX9_MER#lSx>K6Er|I(tJ~8Ei@fbKZaKniI~JS<)21kaC{hNqYBH5eDLoWKfs=^o zDw5#8IyMyV$2yeQAvf_Kop=(1&=9PLv2mc341-JM;J=WJ5=ZfyYykNfc=QYfqNJrY zU$Ii=j9yu>(W_FDH#6ZoJ+nVg^+keo>5mmHWe{SSY^px7Hu+M4ssK|jnFcoDc~R}NtQ?F1G2U^1S4>}{TK~8xPlkT*7O;O)$FQK*jyWmERJGO9fQ;OOs+U=5RO}7of zl!FHD4YiJIopCYJrC+z6I-$-vdY}cidTH~UA*&de3bBO{#rzbQyz*b`2Xt{!ksO3a*O58Y+m~}0yNZtr&wr?ZKb5N#rD+YBW!FsaTv>A+;bA8|J6*JPB8Ixcb z6}@+TukFg~jXjgS!2N6o%sY&)W!!!T?o9$WwK`}Hv&+dL#NOuMy<6peDCi7;v;M)8 z*-M}+@MN&FLVqKey3?Xi7WIL=krG%D!gT9Ma6b9fbEL=0u+yxin3NQ+F*URouZx|{ zFxzO&FYY}M1J?brlRYYX@|6PHi6stUPeip(RXOL|7&dElK>-32Ox=5xukkh;b?@~M zW7^izqiO(Jta`Bs3YdDGIXvZ{AQ79ou)`_-dEEfuaraiLOnlZfXwKVFvBRA&zI$=^ z7Kf<_pACkg!sBdU-?ha6xz_9PuM`G1zKb33(utq?MH_D1ux?8-o%?Ad?25~yR7A#= zvC?(@#D@I!EVl3e?Zak-a>n^8Y7U23YMr8|n$#hdgz)jXbqlU|rvp2TH2EdWshdtm zqyXci7WPU=+;T;E3eC3d&I4Njgl2wzc+65C>GVYV&g>Mu4}}v!xOi9`P|+SfSlwo1iHOrYf?MSU5j;)qnSK5iUFwJ_l4-hO7Oqti0> zqRdb+f1w=e!tj##AG=V(1+SV}jKb8ab$+2mTAuG`zf$ zsHJAQn8V9>rChq;XJe}+LBrnL*qakxW$Pj6OOpDLp+2{I8@lZvetxXC{z6Z%+wxnf z$3fDn%6?*N4Q1z4e@VYt;Cm9)(qypLm3j@=$5ZzKk4lPnt|tBOq&E`D?=@+DJsM~j z+kg9SZ9lT}!NsQ}M7?||ai9vV`rsRzeo)TJ*Cqs~a15|FL-WbU0e%A@qHlid2Vbgs z-(LuY*H7gzylHF+r&4l7db9jGfj#BkR-0-Zxdja77FqN>$nptbs>hU&rIX@fPW!eB zbzBQ(p&xrebij8VyOs^}LVT~}5DE!UqMx^p7D@$rS~MfjEVm~wJsQtThuz^k+i^7Y zr_KpA&9gU%s${~=@H*Js>e7VFtePhaCvP7YROnNnYoz(3MZHPQH)5NnkxLqv@?B21 z(;u|QM)Z?Y%5oRe(s-v+Wa>KHaM|^Mo!Fh9`s-C_+OCG8XyMHlNs{=sa+(g4Na8<=@t)Xb0 zYqSvJ2I#k3SP81P244ojS?{J+FNSzhn60PpqIl)>^dAFL)|~HF-3(Y5(9wy_EHAf_ zUwbh*sqjV0M;Ut7^Cjhwu2J_p{RQVUKGNRE9Se$;<1-oAi!YulMm>xva@2c;CvU#= zPw+hQlghnqf(~h;uRu_%nwtxQ+){0uEQtiPG1<-koi@hUHu}YTN08{1y@+u+eu1Ki z9SC0ipVdvB9p~3#XGYW9KHSQEfq$-_U~r=sa$f76My>LIPF{GhBe%Zb>5J^4i3`~S zF6|$y1kcm%oK_LB^`km69el+kuu9(a(T{@nL-Xh*8&; z@&ah;;R?{sK6lvO_42!Bjc;rY>R7Gs$B^4F`_zQhz@w+dfzk=6UXP*rpXf`Qu(wPf zk#$Dr&C7Ier7?_uO%m;&XQ<1K5x6RF4oXca>8Mq-Z-*_B#9Y6gcjMIh$4Z8kUWEbR zg!qcttg6UKDHWKfKYtwhp7vx^$a57?yf1grXngor^#|bWqkRF5x3YcDQ@+Mz0VXu) zlRrrQzC#Y$-$bnOcbxfBr4^Ib7oc+7$xN;bm54!TDXmV=Fso<1fymz&J706s2`Xvg7j)rLx6FUb$R*s!LIV55btG=cM&a`+}*2yCdq` zO0W?9(`?R3>L7`?Q>8h_aC+V0vMn>4FBS(r{u6Qo0PS<`lpoVmmLCebx-Ja*0P+s_ zd8B8s*tomlDV=@Xn{^HVJwl`gK20{9g7~tCSEU+j;+i91Vjeg&sN;aH^(AcEIlVWK z0h|l|d2+75Kkmugj=+fY3_;PW9PU+i90Wo(&~7)(ELf!!tBxnfD01i8-TG7qvbKVM z3lcGQaJV;`ZsQf;%~EQLHa0L4VW6Yv_p&na1IrydC1K{SLF%Vg$IF`kPw{ zCY=~kcx1a(`P=U6cg17JG(;w!)Ra*Zn*0*h{-d**cRF*Cb#K`OAAfzH zXM<`0^i;7W6+#DWDfSa^!=gj+iV;4Vk6@|%S(8bA4qOI-BXr_c-|8W5-TUI7aFS;0 zBT_Iv-=YTU(rO>rrJMZ)8U~F%vc!Q|Q zl2sIASKRvAE`P19pZ_-ZsXVHu;gzV7nb^O`h<56DfQ%TntYr}5N>Duqkyw-c451sa za4BIJg0`$z+0X0rUpXsT8w$1wTNP@7ES>5t0rfQ;0hZ^*bjxk1HK!=@)YgXA&dSp~ z+*AbB(MO2+`RgKFM`f%JNkISCF35#Nwyr{GYDXpY(!)GSE8(1nt#3Q$Zqf}6`1yHa z>z>6;EXso&$>lq(j~!73b!3+}KKEDSJjqubIA)Hfs_W6);?gry1#WwoY`s@wtmPyOS2-&Wg z7^g&GR4}oq+A_Wr@;eQdMwAQPZhHcD_4>|sk~7lO!yryWhAjA@2mw$6z+VNm!F7zG zkgrM2KPb8sk=b?WX7ACLfNb|(QRog6cjgwu_79tz+03BoPv5=XP6aWC$?y7HxR z0P&xq)#nB-#iuvUigJLQmlPh7!9D+AAUKBz&YE@}9{NJ$dS<$_7fv42H#EGl<1~g@ z2ki|EiEg4pgYPdvn_Q&ly%Z$SXi!g%t%6Y!v!V_{yawhmDC z_J{yNkDPpxEstH*SR8;He<^BLb>i~&2kK`PVxi_=-!P&nOG4}!<#%=@Lq0eElGSG% z(|zu6bej}RBQ$CHK)v?aBZvI`$A`_#p%hg}A?)tk)n$H&*z+Qtoz2W4-hX4{U-VOb zIN@FbADeA;=lgB1$v}Aa2i87eq3a?%50-6B&z+-`!j#v%hoXi~IZ!}F*ag!Dt|O9EpBUH7bgwPm)@hM8{Q5Z@Y)e>+utSQTU4osHPJJ?Z z(wrE2inqPA5K66fxO0B|xSKr%n0#Qe9`^{?Lh=F0;OGZw-`{`FAkF)U1KU+;F9g2=<5QLqD@{R+5jEWoW?pKju%{TrF>oeqE#`Hjz}5!PPIkuFE}; z2E7KeeeWlG%(9y8SMAT>E9X?><4tJBLgB|%)eKP8{r14W8JM=Mdl$h|B_s=Ck?pK(?siCe*LWGyM zzt%DYeSHcJrwJKQ_98w}Ow#CyO^6jCx z#Pz3Nf9RD23>r%b_PQ0%qqr&73fJFQPyl}<=mrRv?un|3X%lMIy`6A-bzJa<9?}S^ z7Qr7GX~O7Sy(ZteQP>8^@uH7pVpE5KBWK73zpb*=Qcg;0$MM1`j;t)&Y$=H*PeL^sOLX2xKoe^HLUGGO0xLdBIOpw4HE;4=L9Q+ z9Nr(BbnHqan`JY&fBiAJ@;g1@2{i-FO_&4p>mFz(q^rA-5Z_@AY(_ES8Hq7QEAZqpH>Il9QHx^_7&pwYz&GgC_5^HTDAy6O7(P?_`*BJ#NyycCAG) zWg%`A@k=hAH~{Ii+LbALKZA1@j4?rwizSW7fbjs}PGM`$QFQwZr_e8F4%YNQF${dhYYd1Q)?cU2EO;`mxmy>||FQuD zDaTOgKGOgm^eR}B?kHF1wIR8R7G)p7A*Bzg3lSVrmf?0XOzF%%mjOs-&jELoe*Pv& zhIIB>hB~maK@kpgTxqq#2h#m9;2y40?Ra<>+W+ajN%!E&i!S7=>Z;F=y!!6Xs)_`& z9Rj|IVZX1Zz|<$y&V_kv6;lZB|2VYHIvgBVo+KvlZ1VQg<9W)8VZQyq9me-9CtqlW zDW4J%dD|td_#3$iet)JX5tBgxQJ^2mvb5qkv8o4ArOjpfig|5c^Hx*babZth!FQpw zFZAijDa1af4Jko@>yayKewI=6;Yg4+S845sw&l|*pR*Lo2LXc%peVsgJiC^Nw4dh# zWT|?dUAB9#(wg~7@$GYd=2vC0op#gUkN5LE{2EnO;VA`{PL_%1k-0&d;nmAI6#V-? z%S{v3)nXf^5a;P)BaZ0O#VKJ?AAK^_fuIo$h$QYRZ{~eQ0Qbw9qdozIm>PMs2|orm zS7zPTCNRAcMhefv1FJj~1{fI`lNzEtC*w1;n<%?2E9-r@98K8-8<^Sx5Hu+~IOT{M z8!On_-nKiprJQ8M2h3yBgt($+rO~$NAP9tF^Kx@ZrNOvA(xE+b%ng3|*3}${E3;09 zex2u#Rh_q>+)w=X4;s6kB!(a<3)iPV#Lsf&1-Zz}SA>l^Ih6^1h?SzHwQN5b4h&47 zwiUl}A>%>01_d$5=@&gSBo}UBeu1K8_ddQ^3TMqAb$s^^bp+2g`Emh(VS^Ti7?=hy zyHdZk_{aOf{J=w_0B#1MYl8?GXuKuB4q(C98&2dS*YK%QXmdB%kR!E%`Ds<2hx%9T zr(JfO7fptT7+x~{$R5!sW#FwW;J`WT|A0OJlRLX9fu8(QseDDiLO3yR1+;l-m?PV{ zaf8!K&FS@wN*b7EopWJF`oNa3YQbA zFjF|k1%sR%VlJ_rhCV=G`}oU^80iwFZ9u&9Gttq}fXF_m6OJYS-M@-I#R%qiQhB0@k@ zVb&W$|AFBS>tCjEU3hdS!IRXJnQrbR!H<=NK79Su>MI_lQ{nI>wW;i(^tJmoAqM^R zOze!B{~K8dXl9)x*ePw$zeDQ|aMtiD%6mTKIm@w^x63NavMw?r18CB-;gV_nFE1{H z?mWwzauI*3OJpQ3-DgJuW`~o2lAtNHSOC^e<&w$}7Kw1Zfvx}nUbPlBQ3!jH*gsf@P zyW=axI7TXC)C>Yu=&dvAx;b7*#&a;Z<^6h0??ubV?GC8bFhKk{@rU?BNHHYFPBt!3^%IgdQQ}=mLID~`|8K~_0$&uTn2_)rFq2!Qu#U#@q$<^3{MhF8vkgitc z22uB&@}snvE?!JtiT?dU-D&IdtkcN_jk_xoMhi=KpIyFfB)FV6cUmPdGL>S*l)SO! zJ_8t|d&Z6E7YArQ>z_G(M?%h1!9E=I7+Xu>qxYF`$`PER&1IY{sUCeG^{%$nu`e09mkZeu6kSO6<}>G(W`I1Z zX_jb61pKo{nHNEjDN*?vt!u@L)iy0kY+;UTLqSfQ>}#46N%vSGl`inqWY3au&qeue zERpd9+$NWK;UnkYdY-@I1%FRlLO$RPa3Q(=LYzKcmJ{%S1CKi42O&c}xY7dB9~2Hc zA)b||Hnop#ZkE-cFn!tzO(w zpKYH0(>S@2QtzYdOGq%<5E~S+e8nOTevg>)I_yy~yK4@>DjjG!Fyv1`V#I5RYCZ zw3_?YHVJ=BzBlgetZM9mb2;==%C7Z^bn1BaheUpXZ5KW$u(bIdYyT*0QBTN9?#&t~ zVEAmzue4JE!z|y5sAd3hH5>BA;J{b%y=Q5?DwX|y*OnI}``GSPv4DQ>ozY_1U0%S) z35K$$-uAEj%<8%_cF|0?_z%iW?z2;KQ(XaTLDt;tqNF2r08T0+4K!v0J9~m^=8$_E z+!QMydll;Sb(%!B6Rp`pO8i3DRTyn#RPREv1J#!`&I<>N!A?jXZ~^@@@4{@quolb$ zBX6!OSjk>ZA)t}GN177bi(_X(f4iIlPl=>>s@JatcxXc{cxudqJ(siSUY=b5HEvX1 zBTxL&kTN3w6@mJfl4O(YzVZIq4E#vaLfB@B}PvHv|33ZVKSK8Mspf-aM=s(xs*v07E@3!RcmEW1QWOkP4PUCma zJp0iA`unGc~tXNY!1&OoMkeD=5M80olvJ4Om3SV#hN!x}y*9SIb zSEdaYj8%$|`^V48CNG_d!;ok0Gv`b31Rf1p}$kPoQt z(~j73#ggrx^eo`XUod;C|J`Iqo-$2&JtMGFv;PvY=>`13MXSn2Wb)o1qG@3Vx(`Ul zzFJk-Xnn)TiTb?4BF;?_5#bWE;4Ex82cDw3tYQdT!C}!fS=5&cnZvYc-rt*4>FGA| ziE2@L;Mc37D}Cu*f8MEM0JmKTaNB}FN=o8S$H}3oWQ0i<8b9_zr-~D~7oH(0M9(92 zmSq^cVH&8MqcwST)8BJ6H{#-3b;d5hX3C)$ZFXb3`J^DmHYT#q!tgREg;Dm zfp+oD384am$e^h4qILA}f!uOdZmUQe4RWY{P;e=a2wb|?2RZNAt?>k~O>r2Fvo)8o z)}A}~$N51yfb_ob8Gig@X679Q^W4Wm<0GxDWzMcT^fbl{?9zOIF?1e%tC(UZ^Bm-N zMv9H|8HfF!K6H9bF5lA?7r0aByFn3UsDDz0l$lb?e=0~NW{uj22mB$*+vo%6`lxoF2qV*wuml*vP*Y$Q&yu}v4?#}CqfQc^vI{Hm>h@Nqu<6H zJH`jxlarLx-(bn{vH#{bhMUaC^YK+9O1#l^Cy%?#pB)*&jwbw9O$M5pQ7?lt6-{n< z&QfBSnR|L{VXy)E_|pP+_*q4?s~S0&TccXiR3tkl8jm$qm^zbf+io zJqXh3$DEF5BlwZ}_es%|-VWs`Y{3pn|HUx;ZvJiSH>$lUF?(%|x`7@~a36V`nUt|N z{s~X;!kB41TbKlAjAgLP8*-?O7%@Uw;z%a@Kb)Gr9LO)ap!EC$`Q-!^moV*t{POs< zi~9QgPX0GE=Rb=6XYj~h;2?OUCq8y@U9T_Dv%p#zHof8T#l=?ZParFP5R}z}vW)eu z%ZJ~1Go6~BFBx0_fHVaw@WP^Q@qD92%e<+#veC0fbhyh^_qApujBe{}-{yV9(zm;t zKB>(+3g-x*-TH$p&MITccwRDtko^n=N=#AyOBUEF2U@U(9KqWHyZ!M(1xHhPJ=HQD zb=t2tgQH13l{q65T(E#H7Uch+y1>vkam%@we+GrlZ%}hP!P`%Ij6W93^~wLDio1%4 znR9`8;R$MTuMRdx=(&5M%XOqWqRWA~2$zB%M)32@B@bwcZWW)lu&Qli*+s1dNbK$H z2G%;u@SuqIVIn~Y#d`EPt}q(bkW_#v;|lRShzLahe-wUim^GUO%aVVE3EOawczEwjXts8lkmyuC=^e)GD4;<;rJ~fL37PE6fQmT1 z8*1uTz*SM*)xMSeS-4q6N%m6CN)aPV43Xl zUeYd$^|(u*m_!2n)p^Co3mi+){m<0tQ}2k(M1ClvQNOY{^Xjzji+U`I+>H3P{^xO^ z#voM5ji%>3-;`dOvj9ppV@$_0MpjAzy$WR?5Gf5EdLlc(rmd~bf6u87J?KU?99lrIy=MWBo!CSVL`0XnVU3tjmVdr3V}nV#)_~jZA`(-dtbf$-7hk@Me&2 zf$1a+$goDG>_*l)^YDa7 zUrYPyIOU^rk4EVYxV$;qd$NJ`;_1h_YPd{pRf$0U*OMjw6>gH;lffh)t8+0N#dJ%B zmf~rCyAF9571eu*av>YjW$J>bQydY^s?8uVPxtyKj+`Id-G_$$btGdY&|G#rcl9O% zk?IP|kbQvYz(<}H4rmi9n)2(F-8W-{hfxuNsUdwsmAknIlE>vj1Y$Cs(jj;Ne&~;E z|9Hm%dA_rAVbWJ?G>yT|U_i~lufeL~u64$BsNAg|Pu5s1Sl&0W#k0VXhkR2uM70DL zT>VvRpq?rH*^mmmfVM26o={3sw{gGMS{7%z9GBtkPqpa9m z#)A4}2whJY>EKBRL*CpccS@qa0j|(?0UO@5b1$hFE`_un5t`{5X-&+^(>~$itjmKR zS_nm&;Au^W!p$Z?)u;Mf%tp~c$kb@7Y2r+*)&n*NyVyq04CP?1@(Oc%OB&vQGOb*` zFNVfHBa9=HrW|b4{$gB_Nz!y!9OtCzjbMOh@{I@wvx5NMgK8!xn9B1RU}WZD#DTXR z+DZ-+G!`{m6ErNT!>f#jTYErezaL7t^Pv#Fm$;P)?WhK7zTuVv>MxeB^X3OxPVLS#mhnJ#(HKeYa&Mz*=B zjgqZBHBRWv1HiunHIdBBC|k*=XcFB2ddyy~9}1+2Tl%5j)2nNsaI4P?%IPOUa~)qi z=?RQ3g+q($T#d6H5RJFi;;>!;34y`>LCD8!BcI`J-q8GtpEZ0AYC$-`)iV4lO3BmYH^_(iWu zd7c2ultdpjfIW^E`+3w+e7?)p{Qo31Jc6)Oo@Yw8Yo`}cY!rcV+?u;sX@>H4N2ogG zds_+fzRRrHNMKBfDfS^glE8h_Xn8mMNWw$z9(B5f_snnq{fz|Qy{{PK)PsU?0xn;U zLhVF&Ycfe>{dXJ>(1tza*K!`}e?)rj=fN+hyKso{A7pwG@7>LA6)AsRok^ z8cUP(G-SU|+SOxU~ zZ+!|lJ2`LsT7TsX1j(c;27??wF@RVMn*uCoY<(sx7(cX>({3|f-FSeZt$birgF6rm z;Hk9-Z#OXQfO2#K(+>XDI-$W$L0rwLepIGSzy6dE0{NidpES^2f`iT-N(cY~Y8c=- z(k`>yd-`ES$T?yjbSE~p9X*qJF6EM?<%KkhkZ<5Qi1?L{qA2AZ@By{Z@#N`2j=?@# z{_APM$-T6|H-cx(x73XN*fR8(p z=!y-()M*uaPjU3;Ewbm&T8wyF%>6T=7p8!VPAsmbj2>oejs!;^W^CGT+yQByNn>{* zb{*JmA2;?RE>^g8=C-bto|o`_G8D4JAU`~|RkNjpsf&u>NaaB+W8>c#!Qyfk+VFyh zaiKmZWCPc8#noQp$!ExhnGxtN+h9?mp9P3Vs! zNo_JjRiqi1T@m1W=qWe?jsNmRe_?rf^u~O|%^FR;{>)TJ7cp@YvtoJGd3$ZH%~>y5*QSDWYD}MGY_*TfYHc@WC^n2`H8e&R=6fz|k z$kcP>FeoBKhxso-5$WWSf2aBBxTX$hejpWoK=Xq({s)?$G5dh#C#1=(*Y~nP{;0#i zuXzP{2auK#0OErZ@rORAY}xf6tp;L6i<7<%<6!HGt3S-K92PQB_6syFEQgjfn05dJ z>%NNktULhO>HZhWI|y_nvS?n-`fzOVQ(3xC8Lb7mz|rATc5Lu5V@!rnFX#MNHx z4s^)=(Sg$(s3_sQJrh&(wWF2cfZ1%c5c}s_{DcRcdNoAJ3}|PZpW%{&#IANLd0~FG zFTh>J$M~i@!9g)&MX7llkqJC&L;p6A`z3j`n)Bn!E`z}aOo&2LL&v$iA zy({O5xa;O7T42DFTCVxG_=O_?GR%_zcb~ibH-J1Z35BZuEq+10RPgush3`BgjP0i6 zwAnb#?!-0$GXJ>$pm_mmo98}-0r=}NbHIgm>AH$y+7_#e7!)(Yl*HYiHA*ltxbv;5 zWwwJV{-WN2*$zZTAWq?hb^CRW|Fro7sFc*!h{90@L*D;6CZX_0OhQliFPEkFQU**k z2%)-uglYM=RP>b>!g7}o9u^N|$yZV$$y>`c8>5{|Z&6>8uWNrpADg65FLJ(9Hz^z! zrDOSf@6rIKj(T{~hyO?WwZt3gWicC63)qF&{-pr&@>K&}LZ-`Og?bbGrU~iPUpN|= z`aYK|V`Z;XUheeU!cnLYk!deW$5vd6mpm|RGr`=k307C?Y!q9@7zqP>Iss5kkeTG! z_Aj(N(&)wn6b~aN&V^RbS$AMCg-Dqw4G)AYhi6^DJ+Y(8M?eu}8 zPl3(UW_8;(6xXXmk?RRS0@Gx-p*A<5ENc8ZYn`ih(5=@SCZyFtp!CO3Js`Kj_P3iH zasjqJl(*9k;8v1G{^V97)|ul-z@1g{nTBrxR~u5n4Gh%ei39?tm{L$T7&Py!~s4O4IbBy!^fjS5!YFr5_V^dg^n z*Y9nteK0~S@;^q10X}eyolovV=V~$-JE}`Qm<7hPa`jr`)-R))>G0U|jJ@4lN1%E- zJZ$fSuXCsgoE#2m1=C}-G-P^4bICQKce5ACbG~z^#s37{ohXusItm3uw*fRR{901B zPxsTieluT7C2C-};zJ+*)J{tgHlobd96-!x8j}UL8yL^=o>IN~@Uh^z?33b|=o6X1 z&;;(Nu&+n5ql?^CFXunvJuRLCf6Oh1V@7Syu_FL1eHNJfkap0c_XN?=)60}3Ux_ak z&tnV{dTZtv#m)s&at`#Qnh+Mu8C1vXaWC9JmI4fTd5R}GpG6%ifLM*Siq(Dp6Jalr zZ@`Fl8ED7p(qcbF`+9r7C%WA_@+u!r~|bQaQ++6{hIaaV|@dVT?D?gI!2$cdTQ6LQ{w`z2XT;MCcd>C2Bn2SI5&|4`f8_=^#yvrQ4-NpzDoZqcsFI7Gr^;wbp~3(-`Zcr|Jg>l=r`V6lDF8An+stS2T*a9DCCn(gUaNswha^=>Rm!CL~9%FiWj= zsLhSaGs^+MflqlvDFTHK6?Zx&``vrPe*bSjo`?bfT}@8R$!$vSX28MNtSe5hEj=lG zQ0Pv}$i4n`CUv33m+65#4@8J#)!`mn+ZWA$P5AQ%1hgNL)_*=+8Yyw9jrd%afuEi{ zsZ+*XY;Akpw1={bH+m7I-39&}&roX`Cib%+YSeZu=mfii!H}I`*QX@XTB&KnC|Afc zfYFv`%syW52Td)|_29{#SCw?4O5)}Ob`Nn7H)wDfT*A#!RlD{c7-=`6Qt*0I%a-}e zR+jucPEO?~8@S3>8YS~jAMckSc2ijE5o&<7o@mcia$8W#G=FN^4Z!>P9gd-5k3xhm zhy&Nq7aVssY>ICsDC9S2%9;D*b!t20!u{XXVGF8Dr+I~JGC1ibK6s{NCVK)%jddfb zTNe*it?9QRP^D%hdls;PC9xO|B7xKE$$cmz%M9lX=r>lrX9Yjgo-VOc$VomJZq@c! z)`}YiQgl1^QgpSRhfdy{r7PD}-Jya-T>+T0vJ6Cr{xW>AOMfLuL_~s^70ctNb?}n_ z$3Hfa^{ILia9A}P$b%;QG=%rMB((*m1WtC*FXmkKgDrJmkU4#N_0w6<5=Js3n|+g{ z6xRUGpcwO3_D%crnKPCWp#}IP-SlDwRrGl!qN%p$iYnx!AL|cR1&p0^KsmOgBidf~ zt&Ji+r%A`GVVK!tn=Fnbn_UvHr~}x3M#?XEX2w`-e?`eBfbHkm!S?@123KEdDWm5( z!1rrsTiLJQl9sGmAciJmi!u10LAmHU$8-(_2pY+kX2PKoIjAcSOKn1vt#y96evjU+ z9XS8-U_-QW64${;xen>k#FIylk)m`Ols(E-j-}oK$Vm?zSYN)I>OYl}MR&@{)*4-V z%gGDdD;`Y2Dw20<5RW>@w)_l0<_`#jz$F{Z7-&%9`m$vc6wFc6SaFo+44`K>ME)-24TAPFUxXk8{ z9s-r-R6+*>C;XE1r?Bd1v7^GCe%7@19u za6eGCWc@{tBk;ilf;O(eJ zDJ7C0JHgMdrnt^yJjfTN%4zQC*s^%78C?w*Vn%kCVap1uel}CxwZgYBLSC4sxs5g| z5PXvQGQd1GD?dxfKy)80%&96)bR|yN+${VqousYb=F0fgVqm-~VCxZ7ImQR*r$z9; z^<-p{q+hKyzbU6F^7Aj?Z|?ZQBca1{Ak|c3CAQ5M9{Sm}`<~o!IDjQmcX%C7JNXnc z2Z+WAr@6Pv>m45#NB~r20t595G)%xGty!=778w$$&Z}8AK|%&CS#iSv;^!&J?e*2m9{w2lo9-iG5-$ z{(g#J0lONcIcqWM-m29{2oBXQV_zBOt@kl{N z;I>`x-2#Al2_wIxgrySu0SiD|h?=*<7JeblCGB8{bBSd1V7m$y{Ej(c>y))}Nvwn| zfP@glv%{ctOuBSpO~J^NXR?Cw9K&@^1YLob*-3y}GaalI`SH*wtD1((u>yTK08ZEn zNGPzE{5TfnzD$Byut+q4Eww8sV3sGryjYrF2@~?`xHQj1WlAyw0U`N`5MsE%NK5xw z7waR6x5vkFl^3fQRk7oMJBJO2V9Ipj_#PA>m*#L$|EyAl$Cxeqb5T!cB0)8^?-oH0 zg510h?%b;%*`8`o>*T~@o?qAxR1&k07F1<~Azb*}QFS6!@FVlhR4{> zAoUa1LOWsh5303&kagrQP3Q_oT?ELK?de`nO@j#$==%DcpdD!U1vJ0-8R<_v{Q!u3 zrY&d9{2^_sXa|6r_a;;xFI(Pcm>2BXHV4>s9)2lRx%2Kt?0g0ZVUu^Yq93lsmMkn9 z=ov%IBPx>~$dxb;aTm$pfq>B!Th6-H_2FZiR^kJFzN|7Ym}^kHFDFA(3^5niQ4KMA z64%*oo6)OlKMrCpg7qZ&qA5UdFLyD>q=Ibt33JDKQR?NObLHX>U@U_b6wA#>Jl8%u zEJcwg%FY#*42rfVLDBXA%X@>({^MA(o+p0l{`->fGP)XoS^Vr$HqLdFt~x3*2|AHj zNcn?_o`JAxwii&9@J=B9!LLyERa3>BCNPSJoacPb)W@6%%zJ%w&xxmO+%!PMeEJkedB zV1$ns(^|G6-9d=IAl;pSJTKT?mclfLBGNtNZJ^}*Q~=`KO?xHj39o9AiNg5J_p@_h z2+Qc2;X~t|a5{I(Tr$&op2!^=Spr4_pE!gGdtnR!rOL9DAi^Gs!5j8``ocLoa;{n`bJAIFc!`sc|B zKY=Li)lI4IbRE;UYmR@L`JteXqRpK9a8gOF~jUVm^!URQKQBwe>#GxAIx z?|)xM-W-MArHI5F!ks~KCNX51EWW^v;UOl9`67xaZa8;MAV=t+NL~WO9LQY*BV@V9 z(XBOye{H|yd^`GNHA2q>_2DAVgnOUF-}f0W1Qd+|X2t@S&0ZgPZaSr@oNSSZ zwSGBcT=fsamPvfJt)I?J1U8xh=%lG1aK=x3AyWZXk;edqP`O=^5q=pnG5bBOrPFZo zQ#cTGAf-HjGHpEoy;wTsnHFNT*wC~riK_B5u5~=j&o8wJ+iCrpVoUT{U#71Y3H@@C z8C9bo*{VOwwqHS%HU*%bF2AYa1bF9?WGpF;CrT60?YI>1qwq*z8Y1x>?STkO$W4I3 zX+j~d&AQynojDUO9Uqsjb-lM&!7MHcVGq$Ikj5oia!mNUrhpK!UCF-hRW7`%A}*Jl z4_s&L@ ztoCidXH(I{f#tL5){t@jHdYH4VhM@LWqyU_cEQ7j+t57ps$#cSr9TAX9o_2ev9~%i z*_C)am{zT9e86{o+L{2+G|q}w{R+DasgRN3P({?)vgdq7`r-2=-In&wj~kRgPd3#iw*NYLM=Y@;{xLInmfvvwc5?hjZjg)3zTW4=x1K#_ ztzZ+a8~8?sy}TAdK|xs$uM1t&u+4_3%KGXFX^JDkrl8Ot5> zDG<&AamNhfqG>}!42T0!;cG~!*vShOJL|<4yA}2!E?t(Gn1pVLS&Qf$Jb7@V6Z#@JX`sznE@*4)nip zDKdFu^?l>f*3IExr!qhAA8M8d_S7u%fjEYR8P8Z1W9T5PmXqY;Y%`G=b*O3)fcTa{ z3@+TDpjqEb;nl^hcc3Huz_K9)-9U4bDafkJle4{sFN2(4U8A=(XJYAADpi%l+xzy=Vs8NMA${CF zk!Mq0Fi4*xzeXq4=silYh1%VZdmo;j^<+!^a@gr5i8$MXW}5OVB&|8{@fe$)_{2s& zHP3t#olAbcXI^}9?3ac5*S6oApDI}Qh)4?%x|dw3Mls6LlMV^^a#8Qs39K?6S6~FLoXli(070w)&rA4_&LgJ)Zhh7<{VB|WaZi}r} z(kce{bEvDhEh(`v5)f+g8_mV&>Sb#RI7F8IERq@hi2yATcF_3S!Rs>O)dsBINw%g7 zh+-rO?S-uh1aP!-&pz~kNK&B5waz8f#gmT-^+5oMrJ7lc7G-_e24d-5j#=k3kY&#SI|V;qhKrt+8rPxX;!%Ft?92=dSG#ur;mCiZHJ>-i`+QM|L$$ikjNp?`7=)suA7;74 zQT~o(SWzDF$+Q_3BMmWiXui=riI+?`Q9am_IgLeEZ1uFX?Aa2QtMBc(d{X^nDK+** zor6YFWX#m@ZD0u|YYpd>zkjzlLVY{VNB`P=ER#r`>b(!f%h1!(@viH3IJl zXb{PK#0wnRdK<8(%1XWbPs-N99Q&Y}is-mZYrk?SJaJm+dIb>P8&W`gv{ z#|Iv_4hxOdM?~vpnK)(X9=rNs)QORtyVL(2KNRo)nh6l;6R}sn?eM#LA0C=Rl5SgJ& z##Q7M3*~3so$R5w7oF@fq1dzia%JOAb2mNgiplA2E54EB>Vh|Q02pRmR(IVX3U8ym zhbQtE=XsrmKu3)Pv-a#3^@p1UGu8g@v?>ztGdpG=6GXKCC^SL7P5a2uy39yHfAbEW zjSYdY^xKB8{h|!+##bDe6Nr989|8sMYiY7?YS=@2+y_I)G+2-j+^~h!fxixZwD`DO zXQG&+JZpQl&y!1o$T@BV>BDtHEJ64tAPC3Ro+!VPpqD>r>3!^`9Xf8bew06yuA(4@ z#$^hRkoKta`~JsT+N@@rAI$SQXIigqzWB}|SRZ%03LnnSq`%RQ1@fr!LOB6B znUt}|L~lsx)4`($e-Nu>>bJ(n_M5+cosyTQW&c9WLi)(f`*H@Ey3vfwHY6@=CQX_h&-)Bt;f+d>EmVVUTd4ex$M#pIpo2TpN0+IEDPAeJoN*fC7MHiOsfiIH_(2I3U2?y;>KySLYR9t zBIpiW!ZpT~lrYSLxdGJz4KN1K8@I*SNif&BU(ydHo^yeKP5e)s> zp`9Y&IsCL8pNtmSCD&#~%=xVgo^Vt$^5sT_VK|r{`EK zZob~X(rG0f=Wk;lQnUM1Wilsoprm+*1ZKaib((8 z-+PCENjPQt(9QS~C+?@iNh>@RjzdAIqKTi#o$kM3Ix8T_cC+D~nwg-epMniAc7V4V zf@p}n#iHU+ZxuLM#G|eqQuhy7rHqPLGsaOlOSm>TM^E_A=8PRE0Phct+Dkiz$4hPD zM(s=N`mSsxfGZHf=BO2Rkbv2+im?oMEVnR;QCLa)6cd0-%{S0&(I zaw7*1Za>+-r*uLtaG9-Fs#Cxf%$~O`pToYW4`y=DPWwnqaMd5=+CJ2v|JT~n!__~Q zOLvNgM$d&u^;k#VX^L6#q$*(E0QwCC<%I#+TOW@i=tz@SEN`W%E9-PHBl|hahNJtZ zI-SFM?)Twg|61hqHQ=RdUyzx(sv}^?L1hLK(5e`#4G@x*X3?Az*uR%*n4C7^MisIY zjhhsI(xvwaHz__oZUrW4*ehqpM-%g)Np95TL8A#_&e-t0`~OEAdb@axP0~=N?+mu zwj&_KDURn*36DuvlGMFY5M*mJTdTlPrErAyo63@Ogi!uS^OgN^o3leT$`>ib^d)gY z4zOpISxXD{^-teX3t@Wf(MCBSDe7s^3J=v4kj1M}yo@NkUl4Orx7X-0jgb0P+w|t3 zq3Ql|^60#=08w`sDT{zF7LAWyTP`_wJb!lka)T{DB^5=6AQjWa68ui0@bUr2hB8V{ zoFQ!7?Oi*?)l;-6RbD!dIpu2~Mv!fj(J|rKZ1^OQefQ$1Lb9sL03{w@2pKG|D)4(< z;z#R8Q>#A;6S!dJS79OspMYYcv&yy$W+fT&jESTeVzylzJGYQ;yeGmdbyCr}aOw1x zaXCo!BF!&Fk#}uXFvyPouE~RgJ2Z{_#`~pY)g~7mag$v4m zVSkmAPicAXWEKZ;t?J>ZkT124)g%HCs4EnH#|1g3h6Ph?LirU=iRTUZ6R+jRa}Q$^ z5)SYO23lcwT^3AZ+($aPumR7_pD6IPCmBh;_uisn8Z>PW5R?@9YDz=#6e=<_gOWS8 z1{1gdm}3`k%(2kt=I)yK4Bh$|$8ZFh|Gw8R{*e9H*D&K0gbRw9efp$(KRt1*s8_|R zdkx4|Fs+C_yr7*Bw&xt6ZB_CVPAHYJmEWUVrr+2-5r<@854|O{i=O(L?&~lb9yZeo zP)>dJXoj)PLx6|?qBPbPJgs|%B1Op1+|E_b-g3W2HE$8X8AXPduKkHK8r=z3nZ;9z zZHM7zC^ueO$yta^m3-LkKWQ5>^0?QV^XmWbTYW}uIV5?>!57G6Y@VaA0i?QYtVyIx zewUYkQO~l2a)bq�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 t*O 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:AVo1iRF+45$y3voE8 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